// list of list of KVP's...
List<List<KeyValuePair<string, string>>> source = .................
var output = source.Select( row => row.Find(kvp => kvp.Key =="hello").Value == row.Find(kvp => kvp.Key == "world").Value);
the datatype of output is IEnumerable<bool> instead of IEnumerable<List<KeyValuePair<string,string>>>
any ideas?
List<List<KeyValuePair<string, string>>> source = .................
var output = source.Select( row => row.Find(kvp => kvp.Key =="hello").Value == row.Find(kvp => kvp.Key == "world").Value);
the datatype of output is IEnumerable<bool> instead of IEnumerable<List<KeyValuePair<string,string>>>
any ideas?
