void Invocation17()
        {
            int j;

            OutInMethodsClass.Bool(OutInMethodsClass.Bool(OutInMethodsClass.Method(0, out j)));
            Console.WriteLine(j);
        }
        void Invocation03()
        {
            int j, l = 0;

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

            if (OutInMethodsClass.Method(0, out int j, ref l))
            {
                // ...
            }
        void Invocation16()
        {
            int j;

            {
                OutInMethodsClass.Method(0, out j);
                Console.WriteLine(j);
            }
        }
        void Invocation04()
        {
            int l = 0;

            if (OutInMethodsClass.Method(0, out var j, ref l))
            {
                // ...
            }
        }
        void Invocation20()
        {
            int j;
            int l = 0;

            Console.WriteLine(l);
            new OutInConstructorsClass(OutInMethodsClass.MethodInt(0, out j, ref l), out var x);
            Console.WriteLine(j);
        }
        void Invocation15()
        {
            int j, l = 0;

            Console.WriteLine(l);
            foreach (var o in OutInMethodsClass.EnumerableMethod <object>(out j))
            {
                j = 0;
            }
        }
        void Invocation14(bool input)
        {
            int j, l = 0;

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

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

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

            Console.WriteLine(l);
            while (OutInMethodsClass.Method(0, out j, ref l))
            {
                j = 0;
            }
        }
        void Invocation19()
        {
            int    j;
            Action a = delegate()
            {
                OutInMethodsClass.Method(0, out j);
                j++;
            };

            a();
        }
        void Invocation18()
        {
            int    j;
            Action a = () =>
            {
                OutInMethodsClass.Method(0, out j);
                j++;
            };

            a();
        }
        void Invocation05()
        {
            int j, l = 0;

            Console.WriteLine(l);
            if (OutInMethodsClass.Method(0, out j, ref l) == false)
            {
                // ...
            }
            Console.WriteLine(j);
        }
        void Invocation04A()
        {
            int j, l = 0;
            {
                Console.WriteLine(l);
                if (OutInMethodsClass.Method(0, out j, ref l))
                {
                    // ...
                }

                Console.WriteLine(j);
            }
        }
        void Invocation06()
        {
            int j, l = 0;

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

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

            case false: j = 0;
                break;

            default: j = 0;
                break;
            }
            Console.WriteLine(j);
        }
        void Invocation09()
        {
            int j, l = 0;

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

            case 2:
                j = 0;
                break;

            default:
                j = 0;
                break;
            }
        }
        void Invocation02()
        {
            int l = 0;

            OutInMethodsClass.Method(0, out var j, ref l);
        }
        void Invocation01()
        {
            int l = 0;

            OutInMethodsClass.Method(0, out int j, ref l);
        }