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

◆ GetBytes() [9/11]

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

Definition at line 117 of file BitConverter.cs.

118 {
119 byte[] array = new byte[4];
120 Unsafe.As<byte, uint>(ref array[0]) = value;
121 return array;
122 }

References System.array, and System.value.