BinaryPrimitives.TryWriteInt16BigEndian(Span<Byte>, Int16) 方法
定义
public:
static bool TryWriteInt16BigEndian(Span<System::Byte> destination, short value);
public static bool TryWriteInt16BigEndian (Span<byte> destination, short value);
static member TryWriteInt16BigEndian : Span<byte> * int16 -> bool
Public Shared Function TryWriteInt16BigEndian (destination As Span(Of Byte), value As Short) As Boolean
参数
要以大字节序形式写入值的字节范围。The span of bytes where the value is to be written, as big endian.
- value
- Int16
要写入到字节范围内的值。The value to write into the span of bytes.
返回
如果范围足够大,可以包含 Int16,则为 true;否则为 false。true if the span is large enough to contain an Int16; otherwise, false.
注解
正好向范围的开头写入2个字节。Writes exactly 2 bytes to the beginning of the span.