Index<T> Constructor

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Index<T>(Int32) Constructs a new index of the specified length.
Index<T>(SerializationInfo, StreamingContext) Constructs a new index from serialization values.

Index<T>(Int32)

Constructs a new index of the specified length.
C#
protected Index(
	int length
)

Parameters

length  Int32
The length of the index.

Index<T>(SerializationInfo, StreamingContext)

Constructs a new index from serialization values.
C#
protected Index(
	SerializationInfo info,
	StreamingContext context
)

Parameters

info  SerializationInfo
The values needed to serialize or deserialize the Vector<T>.
context  StreamingContext
The source and destination of a given serialized stream.

Remarks

This constructor is called internally by the .NET framework when a Vector<T> is deserialized.

See Also