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

◆ IsWhitespace()

static bool System.Xml.Xsl.XPathConvert.IsWhitespace ( char ch)
inlinestaticprivate

Definition at line 1810 of file XPathConvert.cs.

1811 {
1812 if (ch != ' ' && ch != '\t' && ch != '\n')
1813 {
1814 return ch == '\r';
1815 }
1816 return true;
1817 }

References System.ch.

Referenced by System.Xml.Xsl.XPathConvert.SkipWhitespace(), and System.Xml.Xsl.XPathConvert.StringToDouble().