BinaryPrimitives.TryWriteUInt128BigEndian(Span<Byte>, UInt128) 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.
Important
This API is not CLS-compliant.
Writes a UInt128 into a span of bytes, as big endian.
public:
static bool TryWriteUInt128BigEndian(Span<System::Byte> destination, UInt128 value);
[System.CLSCompliant(false)]
public static bool TryWriteUInt128BigEndian(Span<byte> destination, UInt128 value);
[<System.CLSCompliant(false)>]
static member TryWriteUInt128BigEndian : Span<byte> * UInt128 -> bool
Public Shared Function TryWriteUInt128BigEndian (destination As Span(Of Byte), value As UInt128) As Boolean
Parameters
- value
- UInt128
The value to write into the span of bytes.
Returns
false if the span is too small to contain the value; otherwise, true.
- Attributes
Remarks
Writes exactly 16 bytes to the beginning of the span.