ByteSpanExtensions.SetUInt16 Method
Overloads
| Name | Description |
|---|---|
| SetUInt16(Span<Byte>, UInt16) | Writes a little-endian UInt16 to a span of bytes. |
| SetUInt16(Span<Byte>, UInt16, Endian) | Writes a UInt16 to a span of bytes using the specified endianness. |
SetUInt16(Span<Byte>, UInt16)
Writes a little-endian UInt16 to a span of bytes.
public static void SetUInt16(this Span<Byte> bytes, ushort value);
Parameters
| Name | Type | Description |
|---|---|---|
| bytes | Span<Byte> | |
| value | UInt16 | The UInt16 value to write. |
SetUInt16(Span<Byte>, UInt16, Endian)
Writes a UInt16 to a span of bytes using the specified endianness.
public static void SetUInt16(this Span<Byte> bytes, ushort value, Endian endian);
Parameters
| Name | Type | Description |
|---|---|---|
| bytes | Span<Byte> | |
| value | UInt16 | The UInt16 value to write. |
| endian | Endian | The endianness to use. |