23 lines
742 B
C#
23 lines
742 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Collections
|
|
{
|
|
/// <summary>Exposes an enumerator, which supports a simple iteration over a non-generic collection.</summary>
|
|
// Token: 0x020005D8 RID: 1496
|
|
[Token(Token = "0x20005D8")]
|
|
[ComVisible(true)]
|
|
[Guid("496B0ABE-CDEE-11d3-88E8-00902754C43A")]
|
|
public interface IEnumerable
|
|
{
|
|
/// <summary>Returns an enumerator that iterates through a collection.</summary>
|
|
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
|
|
// Token: 0x06002E8C RID: 11916
|
|
[Token(Token = "0x6002E8C")]
|
|
[Address(Slot = "0")]
|
|
[DispId(-4)]
|
|
IEnumerator GetEnumerator();
|
|
}
|
|
}
|