Vector.ConvertToDouble Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ConvertToDouble(Vector<Int64>) |
Converts a |
ConvertToDouble(Vector<UInt64>) |
Converts a |
ConvertToDouble(Vector<Int64>)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
Converts a Vector<Int64>
to a Vector<Double>
.
public:
static System::Numerics::Vector<double> ConvertToDouble(System::Numerics::Vector<long> value);
public static System.Numerics.Vector<double> ConvertToDouble (System.Numerics.Vector<long> value);
static member ConvertToDouble : System.Numerics.Vector<int64> -> System.Numerics.Vector<double>
Public Shared Function ConvertToDouble (value As Vector(Of Long)) As Vector(Of Double)
Public Function ConvertToDouble (value As Vector(Of Long)) As Vector(Of Double)
Parameters
Returns
The converted vector.
Applies to
ConvertToDouble(Vector<UInt64>)
- Source:
- Vector.cs
- Source:
- Vector.cs
- Source:
- Vector.cs
Important
This API is not CLS-compliant.
Converts a Vector<UInt64>
to a Vector<Double>
.
public:
static System::Numerics::Vector<double> ConvertToDouble(System::Numerics::Vector<System::UInt64> value);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<double> ConvertToDouble (System.Numerics.Vector<ulong> value);
[<System.CLSCompliant(false)>]
static member ConvertToDouble : System.Numerics.Vector<uint64> -> System.Numerics.Vector<double>
Public Shared Function ConvertToDouble (value As Vector(Of ULong)) As Vector(Of Double)
Public Function ConvertToDouble (value As Vector(Of ULong)) As Vector(Of Double)
Parameters
Returns
The converted vector.
- Attributes
Applies to
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.