Represents an abstract base class for a strongly typed collection of objects.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public abstract class BCCollectionBase<T> : BCCollectionBase, 
	IEnumerable<T>, IEnumerable
where T : DisposableObject
Visual Basic
Public MustInherit Class BCCollectionBase(Of T As DisposableObject) _
	Inherits BCCollectionBase _
	Implements IEnumerable(Of T), IEnumerable
Visual C++
generic<typename T>
where T : DisposableObject
public ref class BCCollectionBase abstract : public BCCollectionBase, 
	IEnumerable<T>, IEnumerable

Type Parameters

T
The type of elements in the collection.

Inheritance Hierarchy

See Also