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
IDictionary.cs
Go to the documentation of this file.
1using System;
3
5{
6 // Token: 0x0200062C RID: 1580
7 public interface IDictionary<TKey, TValue> : ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable
8 {
9 // Token: 0x170007CD RID: 1997
10 TValue this[TKey key] { get; set; }
11
12 // Token: 0x170007CE RID: 1998
13 // (get) Token: 0x06003089 RID: 12425
15
16 // Token: 0x170007CF RID: 1999
17 // (get) Token: 0x0600308A RID: 12426
19
20 // Token: 0x0600308B RID: 12427
21 bool ContainsKey(TKey key);
22
23 // Token: 0x0600308C RID: 12428
24 void Add(TKey key, TValue value);
25
26 // Token: 0x0600308D RID: 12429
27 bool Remove(TKey key);
28
29 // Token: 0x0600308E RID: 12430
30 bool TryGetValue(TKey key, [Out] TValue value);
31 }
32}
bool TryGetValue(TKey key, [Out] TValue value)
void Add(TKey key, TValue value)