ArraySlice<T> Implicit  Conversion (T[] to ArraySlice<T>)

Implicitly converts a .NET array to an array slice.

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static implicit operator ArraySlice<T> (
	T[] array
)

Parameters

array  T[]
The .NET array to convert.

Return Value

ArraySlice<T>
An array slice with zero offset and unit stride that uses array as its storage array.

See Also