Decimal.TryGetBits(Decimal, Span<Int32>, Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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
변환할 값입니다.
- valuesWritten
- Int32
이 메서드가 반환 될 때 대상에 쓰여진 정수 수를 포함 합니다.
반환
10진수의 이진 표현이 대상에 쓰이면 true
이고, 대상이 충분히 길지 않으면 false
입니다.