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

◆ IsHexPrefix()

static bool System.Guid.IsHexPrefix ( ReadOnlySpan< char > str,
int i )
inlinestaticprivate

Definition at line 672 of file Guid.cs.

673 {
674 if (i + 1 < str.Length && str[i] == '0')
675 {
676 return (str[i + 1] | 0x20) == 120;
677 }
678 return false;
679 }

References System.str.

Referenced by System.Guid.TryParseExactX().