[This is preliminary documentation and is subject to change.]
Constructs a new subarray that contains an initial number of elements and can grow to the full size
of the given array.
Namespace: Microsoft.Research.Naiad.Serialization
Assembly: Microsoft.Research.Naiad (in Microsoft.Research.Naiad.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public SubArray( TElement[] array, int initialCount )
Parameters
- array
- Type: TElement
The array that backs this subarray. - initialCount
- Type: SystemInt32
The initial number of elements in this subarray.
See Also