class ReadOnlyCollection<T>
in global :: System . Collections . ObjectModel
Provides the base class for a generic read-only collection.
TThe type of elements in the collection.
public int Count { get; }
Gets the number of elements contained in the instance.
- Returns The number of elements contained in the instance.
public static ReadOnlyCollection<T> Empty { get; }
😔 No documentation found.
public T Item { get; }
😔 No documentation found.
public bool Contains( T value )
😔 No documentation found.
public void CopyTo( T[] array, int index )
😔 No documentation found.
public IEnumerator<T> GetEnumerator( )
😔 No documentation found.
public int IndexOf( T value )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public ReadOnlyCollection<T>( IList<T> list )
😔 No documentation found.