Class SingleExtensions
IO-related extension methods for
Inheritance
Namespace: X10D.IO
Assembly: X10D.dll
Syntax
public static class SingleExtensions : object
Methods
| Improve this Doc View SourceGetBigEndianBytes(Single)
Converts the current single-precision floating-point number into an array of bytes, as little endian.
Declaration
public static byte[] GetBigEndianBytes(this float value)
Parameters
Type | Name | Description |
---|---|---|
System.Single | value | The |
Returns
Type | Description |
---|---|
System.Byte[] | An array of bytes with length 4. |
GetLittleEndianBytes(Single)
Converts the current single-precision floating-point number into an array of bytes, as little endian.
Declaration
public static byte[] GetLittleEndianBytes(this float value)
Parameters
Type | Name | Description |
---|---|---|
System.Single | value | The |
Returns
Type | Description |
---|---|
System.Byte[] | An array of bytes with length 4. |
TryWriteBigEndianBytes(Single, Span<Byte>)
Converts the current single-precision floating-point number into a span of bytes, as big endian.
Declaration
public static bool TryWriteBigEndianBytes(this float value, Span<byte> destination)
Parameters
Type | Name | Description |
---|---|---|
System.Single | 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(Single, Span<Byte>)
Converts the current single-precision floating-point number into a span of bytes, as little endian.
Declaration
public static bool TryWriteLittleEndianBytes(this float value, Span<byte> destination)
Parameters
Type | Name | Description |
---|---|---|
System.Single | 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. |