I've seen a few different ways to iterate over a Dictionary in C#. Is there a standard way?
|
7
|
|
|
|
|
|
I usually iterate a dictionary this way:
|
||
|
|
|
|
Hi theo, You suggested below to iterate Dictionary myDictionary = new Dictionary(); //Populate your dictionary here Foreach (KeyValuePair kvp in myDictionary){ //Do some interesting things;} FYI, Foreach doesn't work if the value are of type object. Thanks & Regards Khushi |
||
|
|
|
|
I found this method in the documentation for the DictionaryBase class on MSDN:
This was the only one I was able to get functioning correctly in a class that inherited from the DictionaryBase. |
||
|
|
|
|
If say, you want to iterate over the values collection by default, I believe you can implement IEnumerable<>, Where T is the type of the values object in the dictionary, and "this" is a Dictionary.
|
||
|
|
|
|
Depends on whether you're after the keys or the values... From the MSDN Dictionary<(Of <(TKey, TValue>)>) Class description:
|
||
|
|
|
|
Use the built in support for the iterator pattern, the foreach key word. If using a non generic Dictionary, simply use the KeyValuePair type for the different items:
The generic version is almost identical, apart from defining the types in the KeyValuePair to be the same as the dictionary:
|
||
|
|
|
|
There are plenty of options. My personal favorite is by KeyValuePair
You can also use the Keys and Values Collections |
||
|
|
|
|
If you are trying to use a generic Dictionary in C# like you would use an associative array in another language:
Or, if you only need to iterate over the collection of keys, use
And lastly, if you're only interested in the values:
(Take note that the |
|||
|
|
|
|
I would say foreach is the standard way, though it obviously depends on what you're looking for
Is that what you're looking for? |
||||
|
|
|
It entirely depends on what you're looking for. There are collections for both the Keys and the Values so that you can iterate over either one depending your your needs. |
||
|
