Class Int16Extensions
IO-related extension methods for
Inheritance
System.Object
Int16Extensions
Namespace: X10D.IO
Assembly: X10D.dll
Syntax
public static class Int16Extensions : object
Methods
| Improve this Doc View SourceGetBigEndianBytes(Int16)
Converts the current 16-bit signed integer into an array of bytes, as big endian.
Declaration
public static byte[] GetBigEndianBytes(this short value)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | value | The |
Returns
Type | Description |
---|---|
System.Byte[] | An array of bytes with length 8. |
GetLittleEndianBytes(Int16)
Converts the current 16-bit signed integer into an array of bytes, as big endian.
Declaration
public static byte[] GetLittleEndianBytes(this short value)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | value | The |
Returns
Type | Description |
---|---|
System.Byte[] | An array of bytes with length 8. |
TryWriteBigEndianBytes(Int16, Span<Byte>)
Writes the current 16-bit signed integer into a span of bytes, as big endian.
Declaration
public static bool TryWriteBigEndianBytes(this short value, Span<byte> destination)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | 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(Int16, Span<Byte>)
Writes the current 16-bit signed integer into a span of bytes, as little endian.
Declaration
public static bool TryWriteLittleEndianBytes(this short value, Span<byte> destination)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | 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. |