Double.ConvertToIntegerNative<TInteger>(Double) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用溢位上的平臺特定行為,將值轉換成指定的整數類型。
public:
generic <typename TInteger>
where TInteger : System::Numerics::IBinaryInteger<TInteger> static TInteger ConvertToIntegerNative(double value) = System::Numerics::IFloatingPoint<double>::ConvertToIntegerNative;
public static TInteger ConvertToIntegerNative<TInteger> (double value) where TInteger : System.Numerics.IBinaryInteger<TInteger>;
static member ConvertToIntegerNative : double -> 'Integer (requires 'Integer :> System.Numerics.IBinaryInteger<'Integer>)
Public Shared Function ConvertToIntegerNative(Of TInteger As IBinaryInteger(Of TInteger)) (value As Double) As TInteger
類型參數
- TInteger
轉換 value
的整數類型。
參數
- value
- Double
要轉換的值。
傳回
TInteger
從 value
建立之 TInteger
的實例。