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

◆ GetBytes() [4/11]

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

Definition at line 171 of file BitConverter.cs.

172 {
173 byte[] array = new byte[4];
174 Unsafe.As<byte, float>(ref array[0]) = value;
175 return array;
176 }

References System.array, and System.value.