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
MatchCollection.cs
Go to the documentation of this file.
1using System;
6
8{
9 // Token: 0x020000AC RID: 172
10 [DebuggerDisplay("Count = {Count}")]
14 {
15 // Token: 0x0600032A RID: 810 RVA: 0x0000B7A4 File Offset: 0x000099A4
16 internal MatchCollection(Regex regex, string input, int beginning, int length, int startat)
17 {
18 int stringLength = input._stringLength;
24 }
25
26 // Token: 0x170000B0 RID: 176
27 // (get) Token: 0x0600032B RID: 811 RVA: 0x0000B7E4 File Offset: 0x000099E4
28 public bool IsReadOnly
29 {
30 get
31 {
32 return true;
33 }
34 }
35
36 // Token: 0x170000B1 RID: 177
37 // (get) Token: 0x0600032C RID: 812 RVA: 0x0000B7F4 File Offset: 0x000099F4
38 public int Count
39 {
40 get
41 {
42 if (!this._done)
43 {
44 }
45 return this._matches._size;
46 }
47 }
48
49 // Token: 0x170000B2 RID: 178
50 public virtual Match this[int i]
51 {
52 get
53 {
55 do
56 {
57 match = this.GetMatch(i);
58 }
59 while (match == null);
60 return match;
61 }
62 }
63
64 // Token: 0x0600032E RID: 814 RVA: 0x00002050 File Offset: 0x00000250
66 {
67 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
68 }
69
70 // Token: 0x0600032F RID: 815 RVA: 0x00002050 File Offset: 0x00000250
72 {
73 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
74 }
75
76 // Token: 0x06000330 RID: 816 RVA: 0x00002050 File Offset: 0x00000250
77 private Match GetMatch(int i)
78 {
79 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
80 }
81
82 // Token: 0x06000331 RID: 817 RVA: 0x0000B830 File Offset: 0x00009A30
83 private void EnsureInitialized()
84 {
85 if (this._done)
86 {
87 return;
88 }
89 }
90
91 // Token: 0x170000B3 RID: 179
92 // (get) Token: 0x06000332 RID: 818 RVA: 0x0000B848 File Offset: 0x00009A48
93 public bool IsSynchronized
94 {
95 get
96 {
97 }
98 }
99
100 // Token: 0x170000B4 RID: 180
101 // (get) Token: 0x06000333 RID: 819 RVA: 0x00002050 File Offset: 0x00000250
102 public object SyncRoot
103 {
104 get
105 {
106 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
107 }
108 }
109
110 // Token: 0x06000334 RID: 820 RVA: 0x0000B858 File Offset: 0x00009A58
111 public void CopyTo(Array array, int arrayIndex)
112 {
113 if (!this._done)
114 {
115 }
116 List<Match> matches = this._matches;
117 }
118
119 // Token: 0x06000335 RID: 821 RVA: 0x0000B878 File Offset: 0x00009A78
120 public void CopyTo(Match[] array, int arrayIndex)
121 {
122 if (!this._done)
123 {
124 }
125 List<Match> matches = this._matches;
126 }
127
128 // Token: 0x06000336 RID: 822 RVA: 0x0000B894 File Offset: 0x00009A94
130 {
131 /*
132An exception occurred when decompiling this method (06000336)
133
134ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Int32 System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.IndexOf(System.Text.RegularExpressions.Match)
135
136 ---> System.Exception: Basic block has to end with unconditional control flow.
137{
138 IL_0008:
139 stloc:class [mscorlib]System.Collections.Generic.List`1<class System.Text.RegularExpressions.Match>(var_1_0E, ldfld:class [mscorlib]System.Collections.Generic.List`1<class System.Text.RegularExpressions.Match>(MatchCollection::_matches, ldloc:MatchCollection(this)))
140}
141
142 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
143 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
144 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
145 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
146 --- End of inner exception stack trace ---
147 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
148 at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1683
149*/;
150 }
151
152 // Token: 0x06000337 RID: 823 RVA: 0x00002050 File Offset: 0x00000250
154 {
155 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
156 }
157
158 // Token: 0x06000338 RID: 824 RVA: 0x00002050 File Offset: 0x00000250
160 {
161 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
162 }
163
164 // Token: 0x170000B5 RID: 181
166 {
167 get
168 {
169 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
170 }
171 set
172 {
173 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
174 }
175 }
176
177 // Token: 0x0600033B RID: 827 RVA: 0x00002050 File Offset: 0x00000250
179 {
180 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
181 }
182
183 // Token: 0x0600033C RID: 828 RVA: 0x00002050 File Offset: 0x00000250
185 {
186 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
187 }
188
189 // Token: 0x0600033D RID: 829 RVA: 0x0000B8B0 File Offset: 0x00009AB0
191 {
192 /*
193An exception occurred when decompiling this method (0600033D)
194
195ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Boolean System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Contains(System.Text.RegularExpressions.Match)
196
197 ---> System.Exception: Basic block has to end with unconditional control flow.
198{
199 IL_0008:
200 stloc:class [mscorlib]System.Collections.Generic.List`1<class System.Text.RegularExpressions.Match>(var_1_0E, ldfld:class [mscorlib]System.Collections.Generic.List`1<class System.Text.RegularExpressions.Match>(MatchCollection::_matches, ldloc:MatchCollection(this)))
201}
202
203 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
204 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
205 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
206 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
207 --- End of inner exception stack trace ---
208 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
209 at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1683
210*/;
211 }
212
213 // Token: 0x0600033E RID: 830 RVA: 0x00002050 File Offset: 0x00000250
215 {
216 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
217 }
218
219 // Token: 0x0600033F RID: 831 RVA: 0x00002050 File Offset: 0x00000250
220 int IList.Add(object value)
221 {
222 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
223 }
224
225 // Token: 0x06000340 RID: 832 RVA: 0x00002050 File Offset: 0x00000250
227 {
228 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
229 }
230
231 // Token: 0x06000341 RID: 833 RVA: 0x0000B8CC File Offset: 0x00009ACC
232 bool IList.Contains(object value)
233 {
234 if (value != null)
235 {
236 return;
237 }
238 }
239
240 // Token: 0x06000342 RID: 834 RVA: 0x0000B8E0 File Offset: 0x00009AE0
241 int IList.IndexOf(object value)
242 {
243 /*
244An exception occurred when decompiling this method (06000342)
245
246ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Int32 System.Text.RegularExpressions.MatchCollection::System.Collections.IList.IndexOf(System.Object)
247
248 ---> System.Exception: Basic block has to end with unconditional control flow.
249{
250 IL_0000:
251 brtrue(IL_0000, logicnot:bool(ldloc:object[exp:bool](value)))
252}
253
254 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
255 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1878
256 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1878
257 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1846
258 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
259 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
260 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
261 --- End of inner exception stack trace ---
262 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
263 at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1683
264*/;
265 }
266
267 // Token: 0x06000343 RID: 835 RVA: 0x00002050 File Offset: 0x00000250
268 void IList.Insert(int index, object value)
269 {
270 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
271 }
272
273 // Token: 0x170000B6 RID: 182
274 // (get) Token: 0x06000344 RID: 836 RVA: 0x0000B8F0 File Offset: 0x00009AF0
276 {
277 get
278 {
279 return true;
280 }
281 }
282
283 // Token: 0x06000345 RID: 837 RVA: 0x00002050 File Offset: 0x00000250
284 void IList.Remove(object value)
285 {
286 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
287 }
288
289 // Token: 0x06000346 RID: 838 RVA: 0x00002050 File Offset: 0x00000250
291 {
292 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
293 }
294
295 // Token: 0x170000B7 RID: 183
296 object IList.this[int index]
297 {
298 get
299 {
300 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
301 }
302 set
303 {
304 throw new global::Cpp2IlInjected.AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
305 }
306 }
307
308 // Token: 0x06000349 RID: 841 RVA: 0x0000B900 File Offset: 0x00009B00
310 {
311 throw new NotSupportedException();
312 }
313
314 // Token: 0x0400029B RID: 667
316
317 // Token: 0x0400029C RID: 668
319
320 // Token: 0x0400029D RID: 669
321 private bool _done;
322
323 // Token: 0x0400029E RID: 670
324 private readonly string _input;
325
326 // Token: 0x0400029F RID: 671
327 private readonly int _beginning;
328
329 // Token: 0x040002A0 RID: 672
330 private readonly int _length;
331
332 // Token: 0x040002A1 RID: 673
333 private int _startat;
334
335 // Token: 0x040002A2 RID: 674
336 private int _prevlen;
337
338 // Token: 0x020000AD RID: 173
339 [Serializable]
340 private sealed class Enumerator : IEnumerator<Match>, IDisposable, IEnumerator
341 {
342 // Token: 0x0600034A RID: 842 RVA: 0x0000B914 File Offset: 0x00009B14
347
348 // Token: 0x0600034B RID: 843 RVA: 0x0000B930 File Offset: 0x00009B30
349 public bool MoveNext()
350 {
351 for (;;)
352 {
353 int index = this._index;
354 Match match;
355 if (match != null)
356 {
357 return;
358 }
359 }
360 }
361
362 // Token: 0x170000B8 RID: 184
363 // (get) Token: 0x0600034C RID: 844 RVA: 0x0000B94C File Offset: 0x00009B4C
365 {
366 get
367 {
368 int index = this._index;
369 return this._collection.GetMatch(index);
370 }
371 }
372
373 // Token: 0x170000B9 RID: 185
374 // (get) Token: 0x0600034D RID: 845 RVA: 0x0000B96C File Offset: 0x00009B6C
376 {
377 get
378 {
379 /*
380An exception occurred when decompiling this method (0600034D)
381
382ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Object System.Text.RegularExpressions.MatchCollection/Enumerator::System.Collections.IEnumerator.get_Current()
383
384 ---> System.Exception: Basic block has to end with unconditional control flow.
385{
386 Block_0:
387 stloc:Match(var_0_06, callgetter:Match(Enumerator::get_Current, ldloc:Enumerator(this)))
388}
389
390 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
391 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
392 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
393 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
394 --- End of inner exception stack trace ---
395 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
396 at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1683
397*/;
398 }
399 }
400
401 // Token: 0x0600034E RID: 846 RVA: 0x0000B980 File Offset: 0x00009B80
403 {
404 }
405
406 // Token: 0x0600034F RID: 847 RVA: 0x0000B990 File Offset: 0x00009B90
408 {
409 }
410
411 // Token: 0x040002A3 RID: 675
413
414 // Token: 0x040002A4 RID: 676
415 private int _index;
416 }
417 }
418}
class f__AnonymousType0<< Count > j__TPar
MatchCollection(Regex regex, string input, int beginning, int length, int startat)
void CopyTo(Match[] array, int arrayIndex)
void CopyTo(Array array, int arrayIndex)
void Insert(int index, T item)