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

◆ BuildElementName() [1/2]

static string System.Xml.Schema.XmlSchemaValidator.BuildElementName ( string localName,
string ns )
inlinestaticpackage

Definition at line 2558 of file XmlSchemaValidator.cs.

2559 {
2560 if (ns.Length != 0)
2561 {
2562 return System.SR.Format(System.SR.Sch_ElementNameAndNamespace, localName, ns);
2563 }
2564 return System.SR.Format(System.SR.Sch_ElementName, localName);
2565 }
static string Sch_ElementNameAndNamespace
Definition SR.cs:906
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string Sch_ElementName
Definition SR.cs:908
Definition SR.cs:7

References System.SR.Format(), System.SR.Sch_ElementName, and System.SR.Sch_ElementNameAndNamespace.