Have this dictionay retrieving values from DataTable:
Dictionary<string,string> meta= ds.Tables[1].Select("key<>'format'").AsEnumerable().ToDictionary(k=>k.Field<string>(0),v=>v.Field<string>(1));
How would I apply StringComparer.OrdinalIgnoreCase as Mehrdad Afshari suggested ?
You can wrap it in another constructor: