using System;
using System.Collections;
using System.Runtime.InteropServices;
namespace System.Resources
{
/// Provides the base functionality to read data from resource files.
// Token: 0x02000272 RID: 626
[ComVisible(true)]
public interface IResourceReader : IEnumerable, IDisposable
{
/// Closes the resource reader after releasing any resources associated with it.
// Token: 0x06002023 RID: 8227
void Close();
/// Returns an of the resources for this reader.
/// A dictionary enumerator for the resources for this reader.
// Token: 0x06002024 RID: 8228
IDictionaryEnumerator GetEnumerator();
}
}