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
ICollection.cs
Go to the documentation of this file.
1using System;
2
4{
5 // Token: 0x02000629 RID: 1577
6 public interface ICollection<T> : IEnumerable<T>, IEnumerable
7 {
8 // Token: 0x170007CB RID: 1995
9 // (get) Token: 0x0600307F RID: 12415
10 int Count { get; }
11
12 // Token: 0x170007CC RID: 1996
13 // (get) Token: 0x06003080 RID: 12416
14 bool IsReadOnly { get; }
15
16 // Token: 0x06003081 RID: 12417
17 void Add(T item);
18
19 // Token: 0x06003082 RID: 12418
20 void Clear();
21
22 // Token: 0x06003083 RID: 12419
23 bool Contains(T item);
24
25 // Token: 0x06003084 RID: 12420
26 void CopyTo(T[] array, int arrayIndex);
27
28 // Token: 0x06003085 RID: 12421
29 bool Remove(T item);
30 }
31}
void CopyTo(T[] array, int arrayIndex)