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

◆ Add() [9/9]

void System.Xml.Schema.XmlSchemaCollection.Add ( XmlSchemaCollection schema)
inline

Definition at line 159 of file XmlSchemaCollection.cs.

160 {
161 if (schema == null)
162 {
163 throw new ArgumentNullException("schema");
164 }
165 if (this != schema)
166 {
167 IDictionaryEnumerator enumerator = schema._collection.GetEnumerator();
168 while (enumerator.MoveNext())
169 {
170 XmlSchemaCollectionNode xmlSchemaCollectionNode = (XmlSchemaCollectionNode)enumerator.Value;
172 }
173 }
174 }

References System.Add, and System.Xml.Dictionary.