void Invocation06()
        {
            int j;

            {
                OutClass.Method(0, out j);
            }
        }
        void Invocation03()
        {
            int j, l = 0;

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

            if (OutClass.Method(0, out int j, ref l))
            {
                // ...
            }
        void Invocation04()
        {
            int j, l = 0;

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

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