-
Notifications
You must be signed in to change notification settings - Fork 36
Overload_CodeJam_Collections_DictionaryExtensions_GetOrAdd
andrewvk edited this page Jun 23, 2016
·
4 revisions
Name | Description | |
---|---|---|
![]() ![]() |
GetOrAdd(TKey, TValue)(IDictionary(TKey, TValue), TKey) | Adds a key/value pair to the IDictionary(TKey, TValue) if the key does not already exist. |
![]() ![]() |
GetOrAdd(TKey, TValue)(IDictionary(TKey, TValue), TKey, Func(TKey, TValue)) | Adds a key/value pair to the IDictionary(TKey, TValue) if the key does not already exist. |
![]() ![]() |
GetOrAdd(TKey, TValue)(IDictionary(TKey, TValue), TKey, TValue) | Adds a key/value pair to the IDictionary(TKey, TValue) if the key does not already exist. |