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

◆ Contains()

bool System.Collections.Specialized.ListDictionary.Contains ( object key)
inline

Implements System.Collections.IDictionary.

Definition at line 197 of file ListDictionary.cs.

198 {
199 for (;;)
200 {
201 if (key != null)
202 {
204 if (dictionaryNode == null)
205 {
206 return;
207 }
208 IComparer comparer = this.comparer;
209 object key2 = dictionaryNode.key;
210 if (comparer != null)
211 {
212 }
213 if (comparer == null)
214 {
215 return;
216 }
217 if (dictionaryNode.next == null)
218 {
219 return;
220 }
221 }
222 }
223 }
class f__AnonymousType0<< Count > j__TPar

References System.Collections.Specialized.ListDictionary.comparer, System.Collections.Specialized.ListDictionary.head, j__TPar, System.key, and System.Collections.Specialized.ListDictionary.DictionaryNode.key.