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

◆ GetBytes() [3/11]

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

Definition at line 188 of file BitConverter.cs.

189 {
190 byte[] array = new byte[8];
191 Unsafe.As<byte, double>(ref array[0]) = value;
192 return array;
193 }

References System.array, and System.value.