class Collection<T>
in global :: System . Collections . ObjectModel
Provides the base class for a generic collection.
TThe type of elements in the collection.
public int Count { get; }
Gets the number of elements actually contained in the .
- Returns The number of elements actually contained in the .
public void RemoveAt( int index )
Removes the element at the specified index of the .
indexThe zero-based index of the element to remove.
public int GetHashCode( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public bool Remove( T item )
😔 No documentation found.
public Collection<T>( )
😔 No documentation found.
public Collection<T>( IList<T> list )
😔 No documentation found.
public IEnumerator<T> GetEnumerator( )
😔 No documentation found.
public bool Contains( T item )
😔 No documentation found.
public void CopyTo( T[] array, int index )
😔 No documentation found.
public void Clear( )
😔 No documentation found.
public void Add( T item )
😔 No documentation found.
public T Item { get; set; }
😔 No documentation found.
public int IndexOf( T item )
😔 No documentation found.
public void Insert( int index, T item )
😔 No documentation found.