Explicit and implicit variables
int x = 0; // you said it is integer explicitly
if you
var x =0; // you implicitly defined an integer.
var myx = 0;
var myy = true;
var myString = "Time, marches on...";
var subset = from i in numbers where i < 10 select i;
Console.Write("Small Values: ");
foreach (var i in subset)
{
Console.Write("{0} ", i);
}