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

◆ EmitBigEndian() [2/2]

static void Interop.BCrypt.EmitBigEndian ( byte[] blob,
ref int offset,
int value )
inlinestaticpackage

Definition at line 387 of file Interop.cs.

388 {
389 blob[offset++] = (byte)(value >> 24);
390 blob[offset++] = (byte)(value >> 16);
391 blob[offset++] = (byte)(value >> 8);
392 blob[offset++] = (byte)value;
393 }

References System.offset, and System.value.