This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using System.Collections;
using System.Runtime.InteropServices;
namespace System.Resources
{
/// <summary>Provides the base functionality to read data from resource files.</summary>
// Token: 0x02000272 RID: 626
[ComVisible(true)]
public interface IResourceReader : IEnumerable, IDisposable
{
/// <summary>Closes the resource reader after releasing any resources associated with it.</summary>
// Token: 0x06002023 RID: 8227
void Close();
/// <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> of the resources for this reader.</summary>
/// <returns>A dictionary enumerator for the resources for this reader.</returns>
// Token: 0x06002024 RID: 8228
IDictionaryEnumerator GetEnumerator();
}
}