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
)
inline
static
package
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
}
System.ExceptionArgument.value
@ value
System.ExceptionArgument.offset
@ offset
References
System.offset
, and
System.value
.
Interop
BCrypt
Generated by
1.10.0