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

Definition

Important

This API is not CLS-compliant.

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

public:
 static bool TryWriteUIntPtrBigEndian(Span<System::Byte> destination, UIntPtr value);
[System.CLSCompliant(false)]
public static bool TryWriteUIntPtrBigEndian (Span<byte> destination, UIntPtr value);
[<System.CLSCompliant(false)>]
static member TryWriteUIntPtrBigEndian : Span<byte> * unativeint -> bool
Public Shared Function TryWriteUIntPtrBigEndian (destination As Span(Of Byte), value As UIntPtr) As Boolean

Parameters

destination
Span<Byte>

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

value
UIntPtr

unativeint

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 4 bytes on 32-bit platforms -or- 8 bytes on 64-bit platforms to the beginning of the span.

Applies to