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

◆ IsWhitespace() [1/2]

static bool System.Xml.XmlConverter.IsWhitespace ( char ch)
inlinestatic

Definition at line 1270 of file XmlConverter.cs.

1271 {
1272 if (ch <= ' ')
1273 {
1274 if (ch != ' ' && ch != '\t' && ch != '\r')
1275 {
1276 return ch == '\n';
1277 }
1278 return true;
1279 }
1280 return false;
1281 }

References System.ch.