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;如果目标不够长,则为 false

适用于