Decimal.TryGetBits(Decimal, Span<Int32>, Int32) メソッド

定義

Decimalの指定したインスタンスの値を等価のバイナリ表現に変換しようとします。

public:
 static bool TryGetBits(System::Decimal d, Span<int> destination, [Runtime::InteropServices::Out] int % valuesWritten);
public static bool TryGetBits(decimal d, Span<int> destination, out int valuesWritten);
static member TryGetBits : decimal * Span<int> * int -> bool
Public Shared Function TryGetBits (d As Decimal, destination As Span(Of Integer), ByRef valuesWritten As Integer) As Boolean

パラメーター

d
Decimal

変換する値。

destination
Span<Int32>

バイナリ表現を格納するスパン。

valuesWritten
Int32

このメソッドから制御が戻るときに、変換先に書き込まれた整数の数が格納されます。

返品

true 10 進数のバイナリ表現が変換先に書き込まれた場合。宛先が十分な長さではなかった場合に false します。

適用対象