BinaryPrimitives.TryWriteUInt64BigEndian(Span<Byte>, UInt64) Método
Definição
Importante
Esta API não está em conformidade com CLS.
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
Parâmetros
O intervalo de bytes em que o valor deve ser gravado, como big endian.The span of bytes where the value is to be written, as big endian.
- value
- UInt64
O valor a ser gravado no intervalo de bytes.The value to write into the span of bytes.
Retornos
true se o intervalo for grande o suficiente para conter um UInt64; caso contrário, false.true if the span is large enough to contain a UInt64; otherwise, false.
- Atributos
Comentários
Grava exatamente 8 bytes no início do span.Writes exactly 8 bytes to the beginning of the span.