DictExtensionsSetDefaultK, V Method |
Namespace: KSPDev.Extensions
public static V SetDefault<K, V>( this Dictionary<K, V> dict, K key ) where V : new()
public static void ClassicAddToDict(Dictionary<int, HashSet<string>> dict) { if (!dict.ContainsKey(123)) { // Create an empty string set if the key is not yet initialized. dict[123] = new HashSet<string>(); } dict[123].Add("abc"); // Add the value. }
public static void SetDefaultAddToDict(Dictionary<int, HashSet<string>> dict) { // If key 123 doesn't exist it will be created automatically. dict.SetDefault(123).Add("abc"); }