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#
I guess you need
Dictionary<string, List<string>>MSDN