Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetBytes() [10/11]

static byte[] System.BitConverter.GetBytes ( ulong value)
inlinestatic

Definition at line 136 of file BitConverter.cs.

137 {
138 byte[] array = new byte[8];
139 Unsafe.As<byte, ulong>(ref array[0]) = value;
140 return array;
141 }

References System.array, and System.value.