Skip to content

ByteListExtensions.SetUInt24 Method

Overloads

Name Description
SetUInt24(List<Byte>, Int32, UInt24) Writes a little-endian UInt24 to a List<T> of bytes at the specified index.
SetUInt24(List<Byte>, Int32, UInt24, Endian) Writes a UInt24 to a List<T> of bytes at the specified index using the specified endianness.

SetUInt24(List<Byte>, Int32, UInt24)

Writes a little-endian UInt24 to a List<T> of bytes at the specified index.

public static void SetUInt24(this List<Byte> bytes, int index, UInt24 value);

View source

Parameters

Name Type Description
bytes List<Byte>
index Int32 The zero-based index to write to.
value UInt24 The UInt24 value to write.

SetUInt24(List<Byte>, Int32, UInt24, Endian)

Writes a UInt24 to a List<T> of bytes at the specified index using the specified endianness.

public static void SetUInt24(this List<Byte> bytes, int index, UInt24 value, Endian endian);

View source

Parameters

Name Type Description
bytes List<Byte>
index Int32 The zero-based index to write to.
value UInt24 The UInt24 value to write.
endian Endian The endianness to use.