Table of Contents
Extensions for il2cpp dictionaries
public static class Il2CppSystemDictionaryExt
Inheritance System.Object Il2CppSystemDictionaryExt
Deconstruct method of IL2CPP KeyValuePairs
public static void Deconstruct<K,V>(this KeyValuePair<K,V> kvp, out K k, out V v);
K
V
kvp
Il2CppSystem.Collections.Generic.KeyValuePair
k
K
v
V
Get all of the keys from this Dictionary as a list
public static List<TKey> GetKeys<TKey,TValue>(this Dictionary<TKey,TValue> keyValuePairs);
TKey
TValue
keyValuePairs
Il2CppSystem.Collections.Generic.Dictionary
Il2CppSystem.Collections.Generic.List
Get all of the values from this Dictionary as a list
public static List<TValue> GetValues<TKey,TValue>(this Dictionary<TKey,TValue> keyValuePairs);
TKey
TValue
keyValuePairs
Il2CppSystem.Collections.Generic.Dictionary
Il2CppSystem.Collections.Generic.List
Get all of the keys from this Dictionary
public static System.Collections.Generic.IEnumerable<TKey> Keys<TKey,TValue>(this Dictionary<TKey,TValue> keyValuePairs);
TKey
TValue
keyValuePairs
Il2CppSystem.Collections.Generic.Dictionary
System.Collections.Generic.IEnumerable<TKey>
Get all of the values from this Dictionary
public static System.Collections.Generic.IEnumerable<TValue> Values<TKey,TValue>(this Dictionary<TKey,TValue> keyValuePairs);
TKey
TValue
keyValuePairs
Il2CppSystem.Collections.Generic.Dictionary