BinaryPrimitives.TryWriteDoubleBigEndian(Span<Byte>, Double) 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 a Double into a span of bytes, as big endian.
public:
static bool TryWriteDoubleBigEndian(Span<System::Byte> destination, double value);
public static bool TryWriteDoubleBigEndian(Span<byte> destination, double value);
static member TryWriteDoubleBigEndian : Span<byte> * double -> bool
Public Shared Function TryWriteDoubleBigEndian (destination As Span(Of Byte), value As Double) As Boolean
Parameters
- value
- Double
The value to write into the span of bytes.
Returns
true
if the span is large enough to contain a Double; otherwise, false
.
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.