-
IDictionary To String
-
Gets a string representation of the mappings in a dictionary.
-
singleton Map
-
Empty Map
-
Copies all the elements of IDictionary to target IDictionary.
-
Get Or Add from IDictionary
-
Merge two IDictionary
-
Combine IDictionary
-
Remove from IDictionary
-
IDictionary Equals
-
Equals Deep between two IDictionary
-
IDictionary To URL Query String
-
Format IDictionary To String
-
IDictionary Map Equals
-
Returns a string representation of this IDictionary.
-
Add all values from range sequence to src IDictionary. Source is actually modified.
-
Tries to read value and returns the value if successfully read. Otherwise return default value for value's type.
-
Adds item to the dictionary if item is not null.
-
Get Or Default from IReadOnlyDictionary
-
Returns TRUE if the item does NOT exist in the dictionary. This performs MUCH faster than ContainsKey() or ContainsValue()
-
Adds or sets a value for a dictionary.
-
Add or set key value pair in Dictionary
-
To Dictionary Ignoring Duplicate Keys
-
Adds elements to dictionary from collection.
-
Creates the dictionary from collection.
-
Given a collection of values a key function, builds a dictionary
-
Creates a dictionary where the keys are looked up using reference equality
-
Returns true if the two sets contain the same elements. only for sets and dictionaries. Does not work for Lists or Arrays.
-
Empty Dictionary
-
Union two dictionaries with sub-collection of items. If dictionary already contains specified key, it will be replaced by new collection items.
-
Combines two unique Int32 numbers into an Int64 suitable for use as a dictionary key, optionally taking the order of the numbers into account.
-
Returns a dictionary with keyvalue pairs corresponding to items from the given sequence.
-
Add a collection of items into a dictionary, using a collection of keys and one default value for all the items
-
Clone Dictionary
-
Determines whether the specified dictionary is null empty.
-
Partitions elements of the target collection into sub-groups based on the specified key generating function, and returns a dictionary of the generated keys, where each value is a list of the items that produced that key. Items appear in the sub-lists
-
Compares two dictionary for equality.
-
Dictionary Contains Key Ignoring Case
-
Dictionary Get Value Ignoring Case
-
Build a string from collection content. Each collection item is used to produce a 'key=value' string. Pairs are separated by a semi colon.
-
A Dictionary<string,string> extension method that converts a map to a name value collection.
-
Encode IDictionary To Json
-
Decode From Json to IDictionary
-
Add a value to the dictionary with the key and return this dictionary.
-
Remove Range IDictionary
-
IDictionary Get Or Add
-
IDictionary Get Value Or Create
-
Converts the IDictionary to a query string
-
IDictionary Get Value Or Default
-
Determines whether a Dictionary object is a subset of another Dictionary.
-
Gets an item from the dictionary, if it's found. Otherwise, returns the specified default value.
-
IDictionary Add Or Update
-
IDictionary To Xml String
-
Adds an enumerable of entries to the specified dictionary.
-
IDictionary Remove All by condition
-
IDictionary To Debug String
-
Returns a querystring based upon the values in a IDictionary. This will not return the ? character.
-
Gets a value from the dictionary with given key. Returns default value if can not find.
-
Safely get the value of the given property, or return the default if no value is present in the dictionary
-
Safely get the value of the given property as an array of strings, or return an empty array if no value is present in the dictionary. This assumes the property is stored as a comma-separated list
-
Determine if the given property has a value in IDictionary
-
Remove all dictionary elements matching the given predicate.
-
Converts a dictionary instance into a url encoded querystring
-
Check if a dictionary contains all the items from another dictionary.
-
Compare two dictionaries by their key value pairs.
-
Merge two IDictionary
-
Remove All key value pair from Dictionary in IEnumerable
-
Maps a collection to a dictionary using a mapper functor for the value