All C# extension methods for type idictionary
-
Dictionary AddRange
Add an enumeration of items to a dictionary. There are times when you may want to simply add to a dictionary at different points in the pipe, instead of always creating it from a given set of entities This extension allows you to add items to a dictionary from a select statement, or some other enumerable.
-
IDictionary.GetValue
Better way to read a C# Dictionary
-
EntryEquals
Extension method for comparing dictionaries by elements (key pair values)
-
AddToList
Given a dictionary where the value type is a List, add items to values of the dictionary, and/or create a list of items as needed, without having to test if the key item already exists.
-
AddToList
Given a dictionary where the value type is a List, add items to values of the dictionary, and/or create a list of items as needed, without having to test if the key item already exists.