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

◆ this[int level]

object? System.ComponentModel.Design.Serialization.ContextStack.this[int level]
get

Definition at line 21 of file ContextStack.cs.

22 {
23 get
24 {
25 if (level < 0)
26 {
27 throw new ArgumentOutOfRangeException("level");
28 }
29 if (_contextStack != null && level < _contextStack.Count)
30 {
31 return _contextStack[_contextStack.Count - 1 - level];
32 }
33 return null;
34 }
35 }