Skip to content

ByteArrayExtensions.SetUInt64 Method

Overloads

Name Description
SetUInt64(Byte[], Int32, UInt64) Writes a little-endian UInt64 to a byte array at the specified index.
SetUInt64(Byte[], Int32, UInt64, Endian) Writes a UInt64 to a byte array at the specified index using the specified endianness.

SetUInt64(Byte[], Int32, UInt64)

Writes a little-endian UInt64 to a byte array at the specified index.

public static void SetUInt64(this Byte[] bytes, int index, ulong value);

View source

Parameters

Name Type Description
bytes Byte[]
index Int32 The zero-based index to write to.
value UInt64 The value to write.

SetUInt64(Byte[], Int32, UInt64, Endian)

Writes a UInt64 to a byte array at the specified index using the specified endianness.

public static void SetUInt64(this Byte[] bytes, int index, ulong value, Endian endian);

View source

Parameters

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