scripts
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user