.Net
Need help with getting a Value in a List<string> that’s in a Dictionary<int,List<string>> dictionnaire
I’m trying to get a Value in a List<string> that’s in a Dictionary. I’ve tried dictionnaire[0][0] or dictionnaire[dictionnaires.ElementAt(index).Key].Value[0] but they don’t work. Any advice ? What doesn’t work? Are getting an exception? Without more info Read more…