C#中ref与out区别

        static void Main(string[] args)
        {
            //out test
            int a, b;
            //out使用前,变量可以不赋值
            outTest(out a, out b);
            Console.WriteLine("a={0};b={1}", a, b);
            int c = 11, d = 22;
            outTest(out c, out d);
            Console.WriteLine("c={0};d={1}", c, d);

            //ref test
            int e, f;
            //refTest(ref e, ref f); 
            //上面这行会出错,ref使用前,变量必须赋值

            int m = 11, n = 22;
            refTest(ref m, ref n);
            Console.WriteLine("m={0};n={1}", m, n);
            Console.ReadKey();
        }
        static void outTest(out int x, out int y)
        {//离开这个函数前,必须对x和y赋值,否则会报错。 
            //y = x; 
            //上面这行会报错,因为使用了out后,x和y都清空了,需要重新赋值,即使调用函数前赋过值也不行 
            x = 1;
            y = 2;
        }
        static void refTest(ref int x, ref int y)
        {
            x = 1;
            y = x;
        }

  

原文地址:https://www.cnblogs.com/sundebin68/p/3225485.html