using System.Xml.Serialization;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
public static void Main()
NameValueCollection nvc = new NameValueCollection();
nvc.Add("color", "blue");
nvc.Add("color", "blue");
nvc.Add("color", "green");
nvc.Add("color", "green");
nvc.Add("color", "green");
var results = nvc.AllKeys
values = nvc.GetValues(s.Key).Distinct()
foreach(var result in results)
Console.WriteLine("{0}- {1}", result.key, string.Join(",", result.values) );