Class UInt16Extensions
IO-related extension methods for
Inheritance
System.Object
UInt16Extensions
Namespace: X10D.IO
Assembly: X10D.dll
Syntax
public static class UInt16Extensions : object
Methods
| Improve this Doc View SourceGetBigEndianBytes(UInt16)
Converts the current 16-bit unsigned integer into an array of bytes, as big endian.
Declaration
public static byte[] GetBigEndianBytes(this ushort value)
Parameters
Type | Name | Description |
---|---|---|
System.UInt16 | value | The |
Returns
Type | Description |
---|---|
System.Byte[] | An array of bytes with length 8. |
GetLittleEndianBytes(UInt16)
Converts the current 16-bit unsigned integer into an array of bytes, as big endian.
Declaration
public static byte[] GetLittleEndianBytes(this ushort value)
Parameters
Type | Name | Description |
---|---|---|
System.UInt16 | value | The |
Returns
Type | Description |
---|---|
System.Byte[] | An array of bytes with length 8. |
TryWriteBigEndianBytes(UInt16, Span<Byte>)
Writes the current 16-bit unsigned integer into a span of bytes, as big endian.
Declaration
public static bool TryWriteBigEndianBytes(this ushort value, Span<byte> destination)
Parameters
Type | Name | Description |
---|---|---|
System.UInt16 | value | The |
Span<System.Byte> | destination | The span of bytes where the value is to be written, as big endian. |
Returns
Type | Description |
---|---|
System.Boolean | true if the conversion was successful; otherwise, false. |
TryWriteLittleEndianBytes(UInt16, Span<Byte>)
Writes the current 16-bit unsigned integer into a span of bytes, as little endian.
Declaration
public static bool TryWriteLittleEndianBytes(this ushort value, Span<byte> destination)
Parameters
Type | Name | Description |
---|---|---|
System.UInt16 | value | The |
Span<System.Byte> | destination | The span of bytes where the value is to be written, as little endian. |
Returns
Type | Description |
---|---|
System.Boolean | true if the conversion was successful; otherwise, false. |