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

◆ IsValidXmlVersion()

bool System.Xml.XmlDeclaration.IsValidXmlVersion ( string ver)
inlineprivate

Definition at line 170 of file XmlDeclaration.cs.

171 {
172 if (ver.Length >= 3 && ver[0] == '1' && ver[1] == '.')
173 {
174 return XmlCharType.IsOnlyDigits(ver, 2, ver.Length - 2);
175 }
176 return false;
177 }

References System.Xml.Dictionary, and System.Xml.XmlCharType.IsOnlyDigits().

Referenced by System.Xml.XmlDeclaration.XmlDeclaration().