Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
this[int index]
object System.Xml.HWStack.this[int
index
]
get
set
package
Definition at line
15
of file
HWStack.cs
.
16
{
17
get
18
{
19
if
(
index
>= 0 &&
index
<
_used
)
20
{
21
return
_stack
[
index
];
22
}
23
throw
new
IndexOutOfRangeException();
24
}
25
set
26
{
27
if
(
index
>= 0 &&
index
<
_used
)
28
{
29
_stack
[
index
] =
value
;
30
return
;
31
}
32
throw
new
IndexOutOfRangeException();
33
}
34
}
System.Xml.HWStack._stack
object[] _stack
Definition
HWStack.cs:5
System.Xml.HWStack._used
int _used
Definition
HWStack.cs:9
System.ExceptionArgument.value
@ value
System.ExceptionArgument.index
@ index
System
Xml
HWStack
Generated by
1.10.0