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

◆ Push()

void System.ComponentModel.Design.Serialization.ContextStack.Push ( object context)
inline

Definition at line 86 of file ContextStack.cs.

87 {
88 if (context == null)
89 {
90 throw new ArgumentNullException("context");
91 }
92 if (_contextStack == null)
93 {
95 }
96 _contextStack.Add(context);
97 }
virtual int Add(object? value)

References System.ComponentModel.Design.Serialization.ContextStack._contextStack, and System.Collections.ArrayList.Add().