Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IList.cs
Go to the documentation of this file.
1
namespace
System.Collections.Generic
;
2
3
public
interface
IList
<T> :
ICollection
<T>,
IEnumerable
<T>,
IEnumerable
4
{
5
T
this
[
int
index
] {
get
;
set
; }
6
7
int
IndexOf
(T
item
);
8
9
void
Insert
(
int
index
, T
item
);
10
11
void
RemoveAt
(
int
index
);
12
}
System.Collections.Generic.ICollection
Definition
ICollection.cs:4
System.Collections.Generic.IEnumerable
Definition
IEnumerable.cs:4
System.Collections.Generic.IList.RemoveAt
void RemoveAt(int index)
System.Collections.Generic.IList.IndexOf
int IndexOf(T item)
System.Collections.Generic.IList.Insert
void Insert(int index, T item)
System.Collections.Generic.IList
Definition
IList.cs:4
System.Collections.Generic
Definition
IHashKeyCollection.cs:1
System.ExceptionArgument.item
@ item
System.ExceptionArgument.index
@ index
source
System.Private.CoreLib
System.Collections.Generic
IList.cs
Generated by
1.10.0