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

◆ GetBytes() [5/11]

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

Definition at line 154 of file BitConverter.cs.

155 {
156 byte[] array = new byte[sizeof(Half)];
157 Unsafe.As<byte, Half>(ref array[0]) = value;
158 return array;
159 }

References System.array, and System.value.