I'm calling a method with a return type of Dictionary<string, List<string>>.
The way i'm calling it i expect the List<string> to always have just 1 string element. To simplify this i'd like to use Linq to convert the return type to Dictionary<string, string>.
I got as far as to use .ToDictionary(x => x.Key, x=> x.Value); but i'm stumped on how to get the correct values. Is a conversion like this possible with LINQ?
Dictionary<string, string>?