[]
        
(Showing Draft Content)

GrapeCity.Documents.Common.StructList-1.-ctor

StructList Constructor

StructList()

Initializes a new instance of the StructList<T> class that is empty.

Declaration
public StructList()
Public Sub New()

StructList(int)

Initializes a new instance of the StructList<T> class that is empty and has the specified initial capacity.

Declaration
public StructList(int capacity)
Public Sub New(capacity As Integer)
Parameters
Type Name Description
int capacity

The number of elements that the new list can initially store.

StructList(T[], int, int)

Initializes a new instance of the StructList<T> class that contains elements copied from the specified array.

Declaration
public StructList(T[] array, int arrayIndex, int count)
Public Sub New(array As T(), arrayIndex As Integer, count As Integer)
Parameters
Type Name Description
T[] array

The array whose elements should be added to the StructList<T>.

int arrayIndex

The zero-based index of the first element in the array to add.

int count

The number of elements to add.

StructList(IEnumerable<T>)

Initializes a new instance of the StructList<T> class that contains elements copied from the specified collection.

Declaration
public StructList(IEnumerable<T> collection)
Public Sub New(collection As IEnumerable(Of T))
Parameters
Type Name Description
IEnumerable<T> collection

The collection whose elements are copied to the new list.