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

◆ GetBytes() [6/11]

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

Definition at line 63 of file BitConverter.cs.

64 {
65 byte[] array = new byte[4];
66 Unsafe.As<byte, int>(ref array[0]) = value;
67 return array;
68 }

References System.array, and System.value.