using System;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// Represents a strongly-typed, read-only collection of elements.
/// The type of the elements.
// Token: 0x02000611 RID: 1553
[Token(Token = "0x2000611")]
[TypeDependency("System.SZArrayHelper")]
public interface IReadOnlyCollection : IEnumerable, IEnumerable
{
/// Gets the number of elements in the collection.
/// The number of elements in the collection.
// Token: 0x17000757 RID: 1879
// (get) Token: 0x06002F0F RID: 12047
[Token(Token = "0x17000757")]
int Count
{
[Token(Token = "0x6002F0F")]
[Address(Slot = "0")]
get;
}
}
}