interface ICollection<T>

in global :: System . Collections . Generic

Defines methods to manipulate generic collections.

  • T The type of the elements in the collection.

public int Count { get; }

Gets the number of elements contained in the .

  • Returns The number of elements contained in the .

public bool IsReadOnly { get; }

Gets a value indicating whether the is read-only.

  • Returns if the is read-only; otherwise, .

public void Add( T item )

😔 No documentation found.

public void Clear( )

😔 No documentation found.

public bool Contains( T item )

😔 No documentation found.

public void CopyTo( T[] array, int arrayIndex )

😔 No documentation found.

public bool Remove( T item )

😔 No documentation found.