BinaryPrimitives.TryReadInt64BigEndian 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.
Reads an Int64 from the beginning of a read-only span of bytes, as big endian.
public:
static bool TryReadInt64BigEndian(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] long % value);
public static bool TryReadInt64BigEndian(ReadOnlySpan<byte> source, out long value);
static member TryReadInt64BigEndian : ReadOnlySpan<byte> * int64 -> bool
Public Shared Function TryReadInt64BigEndian (source As ReadOnlySpan(Of Byte), ByRef value As Long) As Boolean
Parameters
- source
- ReadOnlySpan<Byte>
The read-only span of bytes to read.
- value
- Int64
When this method returns, contains the value read out of the read-only span of bytes, as big endian.
Returns
true
if the span is large enough to contain an Int64; otherwise, false
.
Remarks
Reads exactly 8 bytes from 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.