BinaryPrimitives.TryWriteUInt64BigEndian(Span<Byte>, UInt64) 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.
Important
This API is not CLS-compliant.
Writes a UInt64 into a span of bytes, as big endian.
public:
static bool TryWriteUInt64BigEndian(Span<System::Byte> destination, System::UInt64 value);
[System.CLSCompliant(false)]
public static bool TryWriteUInt64BigEndian(Span<byte> destination, ulong value);
[<System.CLSCompliant(false)>]
static member TryWriteUInt64BigEndian : Span<byte> * uint64 -> bool
Public Shared Function TryWriteUInt64BigEndian (destination As Span(Of Byte), value As ULong) As Boolean
Parameters
- value
- UInt64
The value to write into the span of bytes.
Returns
true
if the span is large enough to contain a UInt64; otherwise, false
.
- Attributes
Remarks
Writes exactly 8 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.