I\'m a bit surprised to find the results of the following code, where I simply want to remove all 3s from a sequence of ints:
var sequence = new [] { 1, 1, 2
Ahmad already answered your question, but here's another option:
var result = from i in sequence where i != 3 select i;