I have a FormCollection and I just want to only iterate through the keys the do not contain the string pricing.
So what I tried was this...
foreach (var key in collection.AllKeys.Where(k => !k.Contains("Pricing"))){ ... }
The problem is the return is not a filtered list its returning boolean values... in which in need the filtered list of string...
AllKeys returns a string[] so in a sense I am just trying to filter a string[] here...
What I am missing here...
Thanks much!

keyvariable declared in theforeachloop is of typestringbecause theWhereextension method returns anIEnumerable<string>, so you are correct pointing out that it is impossible to get boolean values from this code. – Darin Dimitrov Nov 6 at 16:55string.Contains(string)method is case sensitive. Could this be the problem? – Darin Dimitrov Nov 6 at 16:57