Blazor | ComponentOne
C1.DataCollection Assembly / C1.DataCollection Namespace / C1LengthList<T> Class / C1LengthList<T> Constructor
The number of items.
The default length of every item.
Specifies the length of the memory blocks used to store the items.

In This Topic
    C1LengthList<T> Constructor
    In This Topic
    Initializes a new instance of the C1LengthList class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal count As Integer, _
       ByVal defaultLength As T, _
       Optional ByVal partitionLength As Integer _
    )
    public C1LengthList<T>( 
       int count,
       T defaultLength,
       int partitionLength
    )

    Parameters

    count
    The number of items.
    defaultLength
    The default length of every item.
    partitionLength
    Specifies the length of the memory blocks used to store the items.
    See Also