BinaryPrimitives.WriteInt128BigEndian(Span<Byte>, Int128) 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.
Writes a Int128 into a span of bytes, as big endian.
public:
static void WriteInt128BigEndian(Span<System::Byte> destination, Int128 value);
public static void WriteInt128BigEndian(Span<byte> destination, Int128 value);
static member WriteInt128BigEndian : Span<byte> * Int128 -> unit
Public Shared Sub WriteInt128BigEndian (destination As Span(Of Byte), value As Int128)
Parameters
- value
- Int128
The value to write into the span of bytes.
Exceptions
destination is too small to contain a Int128.
Remarks
Writes exactly 16 bytes to the beginning of the span.