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

◆ IsWhite()

static bool System.Globalization.FormatProvider.Number.IsWhite ( char ch)
inlinestaticprivate

Definition at line 42 of file FormatProvider.cs.

43 {
44 if (ch != ' ')
45 {
46 if (ch >= '\t')
47 {
48 return ch <= '\r';
49 }
50 return false;
51 }
52 return true;
53 }

References System.ch.

Referenced by System.Globalization.FormatProvider.Number.ParseNumber().