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 (
Here is the answer...
foreach (var key in collection.AllKeys.Where(k => !k.Contains("Pricing")).ToArray()){ ... }