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: 0x020005B9 RID: 1465
|
|
[Token(Token = "0x20005B9")]
|
|
[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: 0x06002C76 RID: 11382
|
|
[Token(Token = "0x6002C76")]
|
|
[Address(Slot = "0")]
|
|
[DispId(-4)]
|
|
IEnumerator GetEnumerator();
|
|
}
|
|
}
|