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

◆ TryParse() [8/9]

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

Definition at line 1452 of file Char.cs.

1453 {
1454 if (s.Length != 1)
1455 {
1456 result = '\0';
1457 return false;
1458 }
1459 result = s[0];
1460 return true;
1461 }

References System.s.