using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Collections
{
/// Exposes an enumerator, which supports a simple iteration over a non-generic collection.
// Token: 0x020005B9 RID: 1465
[Token(Token = "0x20005B9")]
[ComVisible(true)]
[Guid("496B0ABE-CDEE-11d3-88E8-00902754C43A")]
public interface IEnumerable
{
/// Returns an enumerator that iterates through a collection.
/// An object that can be used to iterate through the collection.
// Token: 0x06002C76 RID: 11382
[Token(Token = "0x6002C76")]
[Address(Slot = "0")]
[DispId(-4)]
IEnumerator GetEnumerator();
}
}