Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Capacity
override int System.Collections.ArrayList.IListWrapper.Capacity
get
set
Definition at line
105
of file
ArrayList.cs
.
106
{
107
get
108
{
109
return
_list
.
Count
;
110
}
111
set
112
{
113
if
(
value
<
Count
)
114
{
115
throw
new
ArgumentOutOfRangeException(
"value"
, SR.ArgumentOutOfRange_SmallCapacity);
116
}
117
}
118
}
System.Collections.ArrayList.IListWrapper.Count
override int Count
Definition
ArrayList.cs:120
System.Collections.ArrayList.IListWrapper._list
readonly IList _list
Definition
ArrayList.cs:103
System.Collections.ICollection.Count
int Count
Definition
ICollection.cs:5
System.ExceptionArgument.value
@ value
System
Collections
ArrayList
IListWrapper
Generated by
1.10.0