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

◆ TryParse() [6/9]

static bool ISpanParseable< char >. System.Char.TryParse ( ReadOnlySpan< char > s,
IFormatProvider provider,
out char result )
inlinestatic

Definition at line 1498 of file Char.cs.

1499 {
1500 if (s.Length != 1)
1501 {
1502 result = '\0';
1503 return false;
1504 }
1505 result = s[0];
1506 return true;
1507 }

References System.s.