BinaryPrimitives.WriteUInt128LittleEndian(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 little endian.
public:
static void WriteUInt128LittleEndian(Span<System::Byte> destination, UInt128 value);
[System.CLSCompliant(false)]
public static void WriteUInt128LittleEndian(Span<byte> destination, UInt128 value);
[<System.CLSCompliant(false)>]
static member WriteUInt128LittleEndian : Span<byte> * UInt128 -> unit
Public Shared Sub WriteUInt128LittleEndian (destination As Span(Of Byte), value As UInt128)
Parameters
- value
- UInt128
The value to write into the span of bytes.
- Attributes
Exceptions
destination
is too small to contain a UInt128.
Remarks
Writes exactly 16 bytes to the beginning of the span.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.