ByteArrayExtensions.SetUInt24 Method
Overloads
SetUInt24(Byte[], Int32, UInt24)
Writes a little-endian UInt24 to a byte array at the specified index.
public static void SetUInt24(this Byte[] bytes, int index, UInt24 value);
View source
Parameters
| Name |
Type |
Description |
| bytes |
Byte[] |
|
| index |
Int32 |
The zero-based index to write to. |
| value |
UInt24 |
The UInt24 value to write. |
SetUInt24(Byte[], Int32, UInt24, Endian)
Writes a UInt24 to a byte array at the specified index using the specified endianness.
public static void SetUInt24(this Byte[] bytes, int index, UInt24 value, Endian endian);
View source
Parameters
| Name |
Type |
Description |
| bytes |
Byte[] |
|
| index |
Int32 |
The zero-based index to write to. |
| value |
UInt24 |
The UInt24 value to write. |
| endian |
Endian |
The endianness to use. |