BasicCollectionT Class

Represents a strongly-typed collection of [!:T] objects.

Definition

Namespace: SysadminsLV.PKI
Assembly: SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 4.0.1
C#
public abstract class BasicCollection<T> : IList<T>, 
	ICollection<T>, IEnumerable<T>, IEnumerable
Inheritance
Object    BasicCollectionT
Derived
More
Implements
ICollectionT, IEnumerableT, IListT, IEnumerable

Type Parameters

T
The type of elements in the list.

Remarks

This class is abstract and cannot be used directly. Inherit from this class instead.

Constructors

BasicCollectionT Initializes a new instance of the [!:T] class.
BasicCollectionT(IEnumerableT) Initializes a new instance of the BasicCollectionT class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied.

Properties

Methods

Add 
AddRange 
Clear 
Contains 
CopyTo 
Equals
(Inherited from Object)
Finalize
(Inherited from Object)
GetEnumerator 
GetHashCode
(Inherited from Object)
GetType
(Inherited from Object)
IndexOf 
Insert 
MemberwiseClone
(Inherited from Object)
Remove 
RemoveAt 
ToString
(Inherited from Object)

Fields

InternalList Gets internal list.

See Also