Vector<T> Explicit Conversion (Vector<T> to Vector<UInt16>)

Reinterprets the bits of the specified vector into a vector of type UInt16.

This API is not CLS-compliant. 

Namespace:  System.Numerics
Assembly:  System.Numerics.Vectors (in System.Numerics.Vectors.dll)

static explicit operator Vector<unsigned short> (
	Vector<T> value
)

Parameters

value
Type: System.Numerics::Vector<T>

The vector to reinterpret.

Return Value

Type: System.Numerics::Vector<UInt16>
The reinterpreted vector.

The Explicit operator defines a narrowing conversion; it requires a casting operator (in C#) or a conversion method (in Visual Basic).

Show: