BinaryPrimitives.TryWriteInt32BigEndian(Span<Byte>, Int32) Method

Definition

Writes an Int32 into a span of bytes, as big endian.

public:
 static bool TryWriteInt32BigEndian(Span<System::Byte> destination, int value);
public static bool TryWriteInt32BigEndian (Span<byte> destination, int value);
static member TryWriteInt32BigEndian : Span<byte> * int -> bool
Public Shared Function TryWriteInt32BigEndian (destination As Span(Of Byte), value As Integer) As Boolean

Parameters

destination
Span<Byte>

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

value
Int32

The value to write into the span of bytes.

Returns

true if the span is large enough to contain an Int32; otherwise, false.

Remarks

Writes exactly 4 bytes to the beginning of the span.

Applies to