Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Collections/Generic/IReadOnlyCollection.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

27 lines
784 B
C#

using System;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>Represents a strongly-typed, read-only collection of elements.</summary>
/// <typeparam name="T">The type of the elements.</typeparam>
// Token: 0x02000632 RID: 1586
[Token(Token = "0x2000632")]
[TypeDependency("System.SZArrayHelper")]
public interface IReadOnlyCollection<out T> : IEnumerable<T>, IEnumerable
{
/// <summary>Gets the number of elements in the collection.</summary>
/// <returns>The number of elements in the collection.</returns>
// Token: 0x170007CF RID: 1999
// (get) Token: 0x06003127 RID: 12583
[Token(Token = "0x170007CF")]
int Count
{
[Token(Token = "0x6003127")]
[Address(Slot = "0")]
get;
}
}
}