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
DictionaryEntry.cs
Go to the documentation of this file.
1using System;
3
4namespace System.Collections
5{
6 // Token: 0x020005E1 RID: 1505
8 public struct DictionaryEntry
9 {
10 // Token: 0x06002D9B RID: 11675 RVA: 0x00064DD4 File Offset: 0x00062FD4
11 public DictionaryEntry(object key, object value)
12 {
13 this._key = key;
15 }
16
17 // Token: 0x170006F3 RID: 1779
18 // (get) Token: 0x06002D9C RID: 11676 RVA: 0x0000207A File Offset: 0x0000027A
19 public object Key
20 {
21 get
22 {
23 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
24 }
25 }
26
27 // Token: 0x170006F4 RID: 1780
28 // (get) Token: 0x06002D9D RID: 11677 RVA: 0x00064DF0 File Offset: 0x00062FF0
29 public object Value
30 {
31 get
32 {
33 return this._value;
34 }
35 }
36
37 // Token: 0x0400199F RID: 6559
38 private object _key;
39
40 // Token: 0x040019A0 RID: 6560
41 private object _value;
42 }
43}
class f__AnonymousType0<< Count > j__TPar
DictionaryEntry(object key, object value)