BinaryPrimitives.TryWriteUInt32BigEndian(Span<Byte>, UInt32) Method

Definition

Important

This API is not CLS-compliant.

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

public:
 static bool TryWriteUInt32BigEndian(Span<System::Byte> destination, System::UInt32 value);
[System.CLSCompliant(false)]
public static bool TryWriteUInt32BigEndian (Span<byte> destination, uint value);
[<System.CLSCompliant(false)>]
static member TryWriteUInt32BigEndian : Span<byte> * uint32 -> bool
Public Shared Function TryWriteUInt32BigEndian (destination As Span(Of Byte), value As UInteger) As Boolean

Parameters

destination
Span<Byte>

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

value
UInt32

The value to write into the span of bytes.

Returns

true if the span is large enough to contain a UInt32; otherwise, false.

Attributes

Remarks

Writes exactly 4 bytes to the beginning of the span.

Applies to