terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
IList.cs
Go to the documentation of this file.
1using System;
2
4{
5 // Token: 0x02000633 RID: 1587
6 public interface IList<T> : ICollection<T>, IEnumerable<T>, IEnumerable
7 {
8 // Token: 0x170007D1 RID: 2001
9 T this[int index] { get; set; }
10
11 // Token: 0x06003095 RID: 12437
12 int IndexOf(T item);
13
14 // Token: 0x06003096 RID: 12438
15 void Insert(int index, T item);
16
17 // Token: 0x06003097 RID: 12439
18 void RemoveAt(int index);
19 }
20}
void Insert(int index, T item)