Windows apps
Collapse the table of content
Expand the table of content

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

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

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

static explicit operator Vector<double> (
	Vector<T> value
)

Parameters

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

The vector to reinterpret.

Return Value

Type: System.Numerics::Vector<Double>
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:
© 2017 Microsoft