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

◆ ParseQNameThrow() [2/2]

static void System.Xml.ValidateNames.ParseQNameThrow ( string s,
out string prefix,
out string localName )
inlinestaticpackage

Definition at line 143 of file ValidateNames.cs.

144 {
145 int num = ParseQNameThrow(s);
146 if (num != 0)
147 {
148 prefix = s.Substring(0, num);
149 localName = s.Substring(num + 1);
150 }
151 else
152 {
153 prefix = "";
154 localName = s;
155 }
156 }
static int ParseQNameThrow(string s)

References System.Xml.ValidateNames.ParseQNameThrow(), System.prefix, and System.s.