BinaryPrimitives.WriteUIntPtrLittleEndian(Span<Byte>, UIntPtr) Method

Definition

Important

This API is not CLS-compliant.

Writes a UIntPtr into a span of bytes, as little endian.

public:
 static void WriteUIntPtrLittleEndian(Span<System::Byte> destination, UIntPtr value);
[System.CLSCompliant(false)]
public static void WriteUIntPtrLittleEndian (Span<byte> destination, UIntPtr value);
[<System.CLSCompliant(false)>]
static member WriteUIntPtrLittleEndian : Span<byte> * unativeint -> unit
Public Shared Sub WriteUIntPtrLittleEndian (destination As Span(Of Byte), value As UIntPtr)

Parameters

destination
Span<Byte>

The span of bytes where the value is to be written, as little endian.

value
UIntPtr

unativeint

The value to write into the span of bytes.

Attributes

Exceptions

destination is too small to contain a UIntPtr.

Remarks

Writes exactly 4 bytes on 32-bit platforms -or- 8 bytes on 64-bit platforms to the beginning of the span.

Applies to