BinaryPrimitives.WriteUInt16BigEndian(Span<Byte>, UInt16) 方法
定义
重要
此 API 不符合 CLS。
public:
static void WriteUInt16BigEndian(Span<System::Byte> destination, System::UInt16 value);
[System.CLSCompliant(false)]
public static void WriteUInt16BigEndian (Span<byte> destination, ushort value);
[<System.CLSCompliant(false)>]
static member WriteUInt16BigEndian : Span<byte> * uint16 -> unit
Public Shared Sub WriteUInt16BigEndian (destination As Span(Of Byte), value As UShort)
参数
要以大字节序形式写入值的字节范围。The span of bytes where the value is to be written, as big endian.
- value
- UInt16
要写入到字节范围内的值。The value to write into the span of bytes.
- 属性
例外
注解
正好向范围的开头写入2个字节。Writes exactly 2 bytes to the beginning of the span.