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

◆ CopyTo()

void System.Xml.Schema.XmlSchemaSet.CopyTo ( XmlSchema[] schemas,
int index )
inline

Definition at line 604 of file XmlSchemaSet.cs.

605 {
606 if (schemas == null)
607 {
608 throw new ArgumentNullException("schemas");
609 }
610 if (index < 0 || index > schemas.Length - 1)
611 {
612 throw new ArgumentOutOfRangeException("index");
613 }
614 _schemas.Values.CopyTo(schemas, index);
615 }
void CopyTo(KeyValuePair< TKey, TValue >[] array, int index)
virtual ICollection Values
readonly SortedList _schemas

References System.Xml.Schema.XmlSchemaSet._schemas, System.Collections.Generic.Dictionary< TKey, TValue >.CopyTo(), System.index, and System.Collections.SortedList.Values.

Referenced by System.Runtime.Serialization.SchemaExporter.ReprocessAll().