Terraria
v1.4.4.9
Terraria source code documentation
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Events
_
a
c
d
e
f
i
l
m
o
p
r
s
t
u
w
Files
File List
File Members
All
Enumerations
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Properties
Events
Macros
Loading...
Searching...
No Matches
◆
this[int index]
int System.Xml.XmlBinaryWriterSession.IntArray.this[int
index
]
get
set
Definition at line
135
of file
XmlBinaryWriterSession.cs
.
136
{
137
get
138
{
139
if
(
index
>=
_array
.Length)
140
{
141
return
0;
142
}
143
return
_array
[
index
];
144
}
145
set
146
{
147
if
(
index
>=
_array
.Length)
148
{
149
int
[]
array
=
new
int
[Math.Max(
index
+ 1,
_array
.Length * 2)];
150
Array
.Copy(
_array
,
array
,
_array
.Length);
151
_array
=
array
;
152
}
153
_array
[
index
] =
value
;
154
}
155
}
System.Xml.XmlBinaryWriterSession.IntArray._array
int[] _array
Definition
XmlBinaryWriterSession.cs:133
System.Xml.ValueHandleConstStringType.Array
@ Array
System.ExceptionArgument.value
@ value
System.ExceptionArgument.index
@ index
System.ExceptionArgument.array
@ array
System
Xml
XmlBinaryWriterSession
IntArray
Generated by
1.10.0