示例#1
0
        void Invocation03()
        {
            int j, l = 0;

            Console.WriteLine(l);
            OutInMethodsClass.Method(0, out j, ref l);
        }
示例#2
0
        void Invocation16()
        {
            int j;

            {
                OutInMethodsClass.Method(0, out j);
            }
        }
        void Invocation17A()
        {
            int j;

            {
                OutInMethodsClass.Bool(OutInMethodsClass.Bool(new OutInConstructorsClass(0, out j).Bool));
            }
        }
示例#4
0
        void Invocation17A()
        {
            int j;

            {
                OutInMethodsClass.Bool(OutInMethodsClass.Bool(OutInMethodsClass.Method(0, out j)));
            }
        }
示例#5
0
        void Invocation20()
        {
            int j;
            int l = 0;

            Console.WriteLine(l);
            new OutInConstructorsClass(OutInMethodsClass.MethodInt(0, out j, ref l), out var x);
        }
示例#6
0
 void Invocation02A()
 {
     int l = 0;
     int j;
     {
         Console.WriteLine(l);
         OutInMethodsClass.Method(0, out j, ref l);
     }
 }
示例#7
0
        void Invocation20()
        {
            int j;
            int l = 0;

            Console.WriteLine(l);
            OutInMethodsClass.MethodInt(new OutInConstructorsClass(0, out j).Int, out var x, ref l);
            Console.WriteLine(j);
        }
示例#8
0
        void Invocation14(bool input)
        {
            int j, l = 0;

            Console.WriteLine(l);
            for (; input; OutInMethodsClass.Method(0, out j, ref l), l++)
            {
                // ...
            }
        }
示例#9
0
        void Invocation13()
        {
            int j, l = 0;

            Console.WriteLine(l);
            for (; OutInMethodsClass.Method(0, out j, ref l); l++)
            {
                l = 0;
            }
        }
示例#10
0
        void Invocation11()
        {
            int j, l = 0;

            Console.WriteLine(l);
            for (bool b = OutInMethodsClass.Method(0, out j, ref l); b != true;)
            {
                l = 0;
            }
        }
示例#11
0
        void Invocation10()
        {
            int j, l = 0;

            Console.WriteLine(l);
            while (OutInMethodsClass.Method(0, out j, ref l))
            {
                l = 0;
            }
        }
示例#12
0
        void Invocation05()
        {
            int j, l = 0;

            Console.WriteLine(l);
            if (OutInMethodsClass.Method(0, out j, ref l) == false)
            {
                // ...
            }
        }
示例#13
0
        void Invocation19()
        {
            int    j;
            Action a = delegate()
            {
                OutInMethodsClass.Method(0, out j);
            };

            a();
        }
示例#14
0
        void Invocation15()
        {
            int j, l = 0;

            Console.WriteLine(l);
            foreach (var o in OutInMethodsClass.EnumerableMethod <object>(out j))
            {
                l = 0;
            }
        }
示例#15
0
        void Invocation18()
        {
            int    j;
            Action a = () =>
            {
                OutInMethodsClass.Method(0, out j);
            };

            a();
        }
示例#16
0
 void Invocation04A()
 {
     int j, l = 0;
     {
         Console.WriteLine(l);
         if (OutInMethodsClass.Method(0, out j, ref l))
         {
             // ...
         }
     }
 }
示例#17
0
        void Invocation06()
        {
            int j, l = 0;

            Console.WriteLine(l);
            if (OutInMethodsClass.Method(0, out j, ref l))
            {
                // ...
            }
            else
            {
                l = 1;
            }
        }
示例#18
0
        void Invocation08()
        {
            int j, l = 0;

            Console.WriteLine(l);
            switch (OutInMethodsClass.Method(0, out j, ref l))
            {
            case true: l = 0;
                break;

            case false: l = 0;
                break;

            default: l = 0;
                break;
            }
        }
示例#19
0
        void Invocation09()
        {
            int j, l = 0;

            Console.WriteLine(l);
            switch (l)
            {
            case 1:
                OutInMethodsClass.Method(0, out j, ref l);
                l = 0;
                break;

            case 2:
                l = 0;
                break;

            default:
                l = 0;
                break;
            }
        }