How differs the ILookup interface from IDictionary ?
I don't understant what is the ILookup interface meant for.
|
How differs the ILookup interface from IDictionary ? I don't understant what is the ILookup interface meant for. |
|||||
|
|
Also as hinted to in the comments an In summary their use case is very different - you use a lookup when you need a 1:N map with values that are fixed and won't (and can't) change. A dictionary on the other hand offers a mutable 1:1 mapping of key value pairs, so it can be updated to add or remove values. |
|||||||||
|
|
It is much more simpler than |
|||
|
|