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

◆ HexsToChars()

static unsafe int System.Guid.HexsToChars ( char * guidChars,
int a,
int b )
inlinestaticprivate

Definition at line 861 of file Guid.cs.

862 {
863 *guidChars = HexConverter.ToCharLower(a >> 4);
864 guidChars[1] = HexConverter.ToCharLower(a);
865 guidChars[2] = HexConverter.ToCharLower(b >> 4);
866 guidChars[3] = HexConverter.ToCharLower(b);
867 return 4;
868 }

References System.HexConverter.ToCharLower().

Referenced by System.Guid.TryFormat().