Class Collection

Collection class

It is base class for collections.

public abstract class Collection : IEnumerable

Constructors

NameDescription
Collection()Constructor.

Properties

NameDescription
Count { get; }Gets the number of elements actually contained in the collection.

Methods

NameDescription
Clear()Removes all elements from collection.
GetEnumerator()Supports a simple iteration over a nongeneric collection.
IsExist(int)Is exist item in the collection.

See Also