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

◆ ConstructQName()

static string System.Xml.Xsl.Xslt.Compiler.ConstructQName ( string prefix,
string localName )
inlinestatic

Definition at line 233 of file Compiler.cs.

234 {
235 if (prefix.Length == 0)
236 {
237 return localName;
238 }
239 return prefix + ":" + localName;
240 }

References System.prefix.

Referenced by System.Xml.Xsl.Xslt.QilGenerator.ResolveFunction(), and System.Xml.Xsl.Xslt.QilGenerator.ResolveVariable().