BaseCollection<T> Members
Include Protected Members
Include Inherited Members
BaseCollection is the base class for collections.
The BaseCollection<T> type exposes the following members.
Constructors
Name | Description | |
---|---|---|
BaseCollection<T> | Creates a new instance from the serialized content. |
Top
Properties
Name | Description | |
---|---|---|
Count | Gets the number of items in the collection. | |
IsFixedSize | Gets a boolean that specifies whether the size of the collection is fixed. | |
IsReadOnly | Gets a boolean that specifies whether the collection is read-only. | |
IsSynchronized | Gets a boolean that specifies whether the collection is synchronized. | |
Item | Gets or sets an element in the collection at a specific position. | |
SyncRoot | Gets an object that can be used to synchronize access to the collection. |
Top
Methods
Name | Description | |
---|---|---|
Add | Adds an element to the collection. | |
AddRange | Adds a collection to the collection. | |
Clear | Removes all the elements from the collection. | |
Contains | Checks whether an element is contained in the collection. | |
CopyTo | Copies the items of the collection to an array. | |
Equals | (inherited from Object) | |
Finalize | (inherited from Object) | |
GetEnumerator | Gets an enumerator over the collection. | |
GetHashCode | (inherited from Object) | |
GetObjectData | Populates a SerializationInfo object with the data needed to serialize the target object. | |
GetType | (inherited from Object) | |
IndexOf | Gets the position of an element in the collection. | |
Insert | Inserts an element at a specific position in the collection. | |
MemberwiseClone | (inherited from Object) | |
OnAdded | Called when an object has been added to the collection. | |
OnAdding | Called when an object is about to be added to the collection. | |
OnRemoving | Called when an object is about to be removed from the collection. | |
Remove | Removes an element from the collection. | |
RemoveAt | Removes the element at a specific position in the collection. | |
ToString | (inherited from Object) |
Top
Explicit Interface Implementations
Name | Description | |
---|---|---|
IEnumerable.GetEnumerator | Gets an enumerator over the collection. |
Top