I have a list that contains name/value pairs
Class looks like this:
string Name { get; set; }
string Value { get; set; }
What I need to do is concatenate all of the values that have the same name into a new list where the class looks like this:
string Name { get; set; }
list<string> Values { get; set; }