int x = 4; 
while (x > 0)
{ if (x % 2 == 0) Console.WriteLine(x); 
x--; 
}