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

◆ IsWhitespace()

static bool System.Xml.Linq.XDocument.IsWhitespace ( string s)
inlinestaticpackage

Definition at line 411 of file XDocument.cs.

412 {
413 foreach (char c in s)
414 {
415 if (c != ' ' && c != '\t' && c != '\r' && c != '\n')
416 {
417 return false;
418 }
419 }
420 return true;
421 }

References System.s.

Referenced by System.Xml.Linq.XDocument.ValidateString().