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

◆ AddRange()

void System.Xml.Xsl.Xslt.CompilerErrorCollection.AddRange ( CompilerError[] value)
inline

Definition at line 12 of file CompilerErrorCollection.cs.

13 {
14 if (value == null)
15 {
16 throw new ArgumentNullException("value");
17 }
18 for (int i = 0; i < value.Length; i++)
19 {
20 Add(value[i]);
21 }
22 }

References System.Add, and System.value.