Constructs a new array slice.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public ArraySlice(
int length
)
Public Sub New (
length As Integer
)
public:
ArraySlice(
int length
)
new :
length : int -> ArraySlice
Parameters
- length
- Type: SystemInt32
The capacity of the slice.
Use this constructor to create an array slice that wraps a standard .NET array of the specified length.
The offset is zero and the stride is 1.
Reference