Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a string member variable namely ServiceType and a string list SubService .

Here serviceType contains strings(consider as key) and SubService contains list of

strings(consider as value). Now i'm trying to map one ServiceType string(key) with

SubService(value contains list of strings) using hashing concept. what my problem is i can map

a key with one value but i'm not getting that how to map with list of values.Anyone can help

me that hoe to map this kind of list and key in c#

share|improve this question

2 Answers

up vote 3 down vote accepted

I guess you need Dictionary<string, List<string>>

MSDN

share|improve this answer
Thanks for your reply now i got it and i will do – Sowmya Jul 7 '11 at 6:03
@Sowmya: you are welcome. – Andrew Orsich Jul 7 '11 at 7:37

I don't have Visual Studio open in front of me, so this probably has some syntax issues, but basically:

Dictionary<string, List<string>> foo = new Dictionary<string, List<string>>();
// populate
List<string> bar = new List<string>();
bar.Add("wheeeee");
foo.Add("myKeyValue", bar);
// fetch
List<string> myServices = foo["myKeyValue"];
share|improve this answer
Hi thank you i'm done and my problem is solved with your solution. – Sowmya Jul 7 '11 at 6:05

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.