This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
using System.Runtime.InteropServices;
namespace System.Collections
{
/// <summary>Exposes the enumerator, which supports a simple iteration over a non-generic collection.</summary>
/// <filterpriority>1</filterpriority>
// Token: 0x02000018 RID: 24
[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>
/// <filterpriority>2</filterpriority>
// Token: 0x06000172 RID: 370
[DispId(-4)]
IEnumerator GetEnumerator();
}
}