static void exch(int a,int b)
        {
            int temp;
            temp = a;
            a = b;
            b = temp;
        }
C#里面不支持指针,也不能写成
exch(int &a,int &b)
那怎么进行值变换呢?