terraria-cpp2il v1.4.4.9
Terraria mobile dump, with CallAnalysis (see source code). Dump with reconstucted method: https://infinitynichto.github.io/terraria-cpp2il-methodrecon
Loading...
Searching...
No Matches
IList.cs
Go to the documentation of this file.
1using System;
3
5{
6 [global::Cpp2ILInjected.Token(Token = "0x2000633")]
7 public interface IList<T> : ICollection<T>, IEnumerable<T>, IEnumerable
8 {
9 [global::Cpp2ILInjected.Token(Token = "0x170007D1")]
10 T this[int index]
11 {
12 [global::Cpp2ILInjected.Token(Token = "0x6003093")]
13 get;
14 [global::Cpp2ILInjected.Token(Token = "0x6003094")]
15 set;
16 }
17
18 [global::Cpp2ILInjected.Token(Token = "0x6003095")]
19 int IndexOf(T item);
20
21 [global::Cpp2ILInjected.Token(Token = "0x6003096")]
22 void Insert(int index, T item);
23
24 [global::Cpp2ILInjected.Token(Token = "0x6003097")]
25 void RemoveAt(int index);
26 }
27}
void Insert(int index, T item)