Skip to content

ByteListExtensions.SetUInt64 Method

Overloads

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

SetUInt64(List<Byte>, Int32, UInt64)

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

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

View source

Parameters

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

SetUInt64(List<Byte>, Int32, UInt64, Endian)

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

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

View source

Parameters

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