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

◆ GetBytes() [7/11]

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

Definition at line 80 of file BitConverter.cs.

81 {
82 byte[] array = new byte[8];
83 Unsafe.As<byte, long>(ref array[0]) = value;
84 return array;
85 }

References System.array, and System.value.