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

◆ UnmarshalInt()

static int System.Security.AccessControl.GenericSecurityDescriptor.UnmarshalInt ( byte[] binaryForm,
int offset )
inlinestaticpackageinherited

Definition at line 64 of file GenericSecurityDescriptor.cs.

65 {
66 return binaryForm[offset] + (binaryForm[offset + 1] << 8) + (binaryForm[offset + 2] << 16) + (binaryForm[offset + 3] << 24);
67 }

References System.offset.

Referenced by System.Security.AccessControl.RawSecurityDescriptor.RawSecurityDescriptor().