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

◆ AddRange() [1/2]

void System.ComponentModel.Design.DesignerVerbCollection.AddRange ( DesignerVerb?[] value)
inline

Definition at line 33 of file DesignerVerbCollection.cs.

34 {
35 if (value == null)
36 {
37 throw new ArgumentNullException("value");
38 }
39 for (int i = 0; i < value.Length; i++)
40 {
41 Add(value[i]);
42 }
43 }

References System.ComponentModel.Design.Add, and System.value.

Referenced by System.ComponentModel.Design.DesignerVerbCollection.DesignerVerbCollection().