BinaryPrimitives.TryWriteInt32LittleEndian(Span<Byte>, Int32) 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.
Writes an Int32 into a span of bytes, as little endian.
public:
static bool TryWriteInt32LittleEndian(Span<System::Byte> destination, int value);
public static bool TryWriteInt32LittleEndian(Span<byte> destination, int value);
static member TryWriteInt32LittleEndian : Span<byte> * int -> bool
Public Shared Function TryWriteInt32LittleEndian (destination As Span(Of Byte), value As Integer) As Boolean
Parameters
- 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
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.