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

◆ GetBytes() [8/11]

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

Definition at line 46 of file BitConverter.cs.

47 {
48 byte[] array = new byte[2];
49 Unsafe.As<byte, short>(ref array[0]) = value;
50 return array;
51 }

References System.array, and System.value.