Represents a strongly typed collection of scripting objects.

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

Syntax

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

Type Parameters

T
The type of elements in the collection.

Inheritance Hierarchy

See Also