using System.Linq;
using System.Diagnostics;
int x = 10;
int y = 20;
var numbers = new [] { x, y };
x = numbers.Skip(1).First();
y = numbers.First();
Debug.Assert(x == 20);
Debug.Assert(y == 10);