SchedulerCollection<T> Constructors

Definition

Overloads

SchedulerCollection<T>()

Initializes a new, empty instance of this class.

SchedulerCollection<T>(IEnumerable<T>)

Initializes a new instance of this class using the contents of an existing collection to populate the collection.

SchedulerCollection<T>()

Initializes a new, empty instance of this class.

public SchedulerCollection ();
Public Sub New ()

Applies to

SchedulerCollection<T>(IEnumerable<T>)

Initializes a new instance of this class using the contents of an existing collection to populate the collection.

public SchedulerCollection (System.Collections.Generic.IEnumerable<T> list);
new Microsoft.Hpc.Scheduler.SchedulerCollection<'T> : seq<'T> -> Microsoft.Hpc.Scheduler.SchedulerCollection<'T>
Public Sub New (list As IEnumerable(Of T))

Parameters

list
IEnumerable<T>

An existing collection used to populate this collection.

Applies to