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
LowLevelList.cs
Go to the documentation of this file.
1using System;
4
6{
7 // Token: 0x0200064B RID: 1611
8 [DebuggerDisplay("Count = {Count}")]
9 internal class LowLevelList<T>
10 {
11 // Token: 0x0600312F RID: 12591 RVA: 0x0006B0D8 File Offset: 0x000692D8
12 public LowLevelList()
13 {
14 }
15
16 // Token: 0x06003130 RID: 12592 RVA: 0x0006B0EC File Offset: 0x000692EC
18 {
19 if (capacity != 0)
20 {
21 this._items = this;
22 return;
23 }
24 }
25
26 // Token: 0x170007F0 RID: 2032
27 // (get) Token: 0x06003131 RID: 12593 RVA: 0x0000207A File Offset: 0x0000027A
28 // (set) Token: 0x06003132 RID: 12594 RVA: 0x0000207A File Offset: 0x0000027A
29 public int Capacity
30 {
31 get
32 {
33 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
34 }
35 set
36 {
37 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
38 }
39 }
40
41 // Token: 0x170007F1 RID: 2033
42 // (get) Token: 0x06003133 RID: 12595 RVA: 0x0006B10C File Offset: 0x0006930C
43 public int Count
44 {
45 get
46 {
47 return this._size;
48 }
49 }
50
51 // Token: 0x170007F2 RID: 2034
52 public T this[int index]
53 {
54 get
55 {
56 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
57 }
58 set
59 {
60 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
61 }
62 }
63
64 // Token: 0x06003136 RID: 12598 RVA: 0x0000207A File Offset: 0x0000027A
65 public void Add(T item)
66 {
67 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
68 }
69
70 // Token: 0x06003137 RID: 12599 RVA: 0x0000207A File Offset: 0x0000027A
71 private void EnsureCapacity(int min)
72 {
73 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
74 }
75
76 // Token: 0x06003138 RID: 12600 RVA: 0x0006B120 File Offset: 0x00069320
78 {
79 int size = this._size;
80 }
81
82 // Token: 0x06003139 RID: 12601 RVA: 0x0000207A File Offset: 0x0000027A
83 public void Clear()
84 {
85 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
86 }
87
88 // Token: 0x0600313A RID: 12602 RVA: 0x0000207A File Offset: 0x0000027A
89 public bool Contains(T item)
90 {
91 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
92 }
93
94 // Token: 0x0600313B RID: 12603 RVA: 0x0000207A File Offset: 0x0000027A
95 public void CopyTo(T[] array, int arrayIndex)
96 {
97 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
98 }
99
100 // Token: 0x0600313C RID: 12604 RVA: 0x0000207A File Offset: 0x0000027A
101 public int IndexOf(T item)
102 {
103 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
104 }
105
106 // Token: 0x0600313D RID: 12605 RVA: 0x0000207A File Offset: 0x0000027A
107 public void Insert(int index, T item)
108 {
109 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
110 }
111
112 // Token: 0x0600313E RID: 12606 RVA: 0x0000207A File Offset: 0x0000027A
114 {
115 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
116 }
117
118 // Token: 0x0600313F RID: 12607 RVA: 0x0006B134 File Offset: 0x00069334
119 public bool Remove(T item)
120 {
121 return true;
122 }
123
124 // Token: 0x06003140 RID: 12608 RVA: 0x0000207A File Offset: 0x0000027A
126 {
127 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
128 }
129
130 // Token: 0x06003141 RID: 12609 RVA: 0x0000207A File Offset: 0x0000027A
131 public void RemoveAt(int index)
132 {
133 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
134 }
135
136 // Token: 0x06003142 RID: 12610 RVA: 0x0006B144 File Offset: 0x00069344
137 // Note: this type is marked as 'beforefieldinit'.
139 {
140 }
141
142 // Token: 0x04001A9D RID: 6813
143 protected T[] _items;
144
145 // Token: 0x04001A9E RID: 6814
146 protected int _size;
147
148 // Token: 0x04001A9F RID: 6815
149 protected int _version;
150
151 // Token: 0x04001AA0 RID: 6816
152 private static readonly T[] s_emptyArray;
153 }
154}
class f__AnonymousType0<< Count > j__TPar
void InsertRange(int index, IEnumerable< T > collection)
void CopyTo(T[] array, int arrayIndex)
int RemoveAll(Predicate< T > match)
void AddRange(IEnumerable< T > collection)