Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How differs the ILookup interface from IDictionary ?

I don't understant what is the ILookup interface meant for.

share|improve this question
3  
"Multi-map" support is the first thing that comes to mind (one key can map to a set of values). – user166390 Mar 25 '11 at 18:09

2 Answers

up vote 23 down vote accepted

ILookup entries can contain multiple items per key - each key is mapped to an IEnumerable<TElement>.

Also as hinted to in the comments an ILookup is immutable, while you can update values in an IDictionary (it exposes an Add() method and an indexer that allows getting and setting values).

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.

share|improve this answer
1  
Indeed, each entry is an IEnumerable<T> instead of a T. – Gabe Mar 25 '11 at 18:11
1  
+1 While true, it would be nice to have more on difference with interface, update-mutability, key requirements, etc. – user166390 Mar 25 '11 at 18:11

It is much more simpler than IDictionary. It is used by Linq. It only has Contains, Item and Count. IDictionary has Add, Remove, etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.