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

◆ IsWhitespace()

static bool System.Xml.EncodingStreamWrapper.IsWhitespace ( byte ch)
inlinestaticprivate

Definition at line 513 of file EncodingStreamWrapper.cs.

514 {
515 if (ch != 32 && ch != 10 && ch != 9)
516 {
517 return ch == 13;
518 }
519 return true;
520 }

References System.ch.

Referenced by System.Xml.EncodingStreamWrapper.CheckUTF8DeclarationEncoding().