try
                  public void getit(ref int a,ref int b)

int c=0;
if(a<b)
{
c=a;
a=b;
b=c; }
  Console.WriteLine("The two number that from big to small is:{0},{1}",a,b);
}