public void RearrangeInAndOut()

in 02-Editing/05-Rearranging_code.cs [57:69]


        public void RearrangeInAndOut()
        {
            if (true)
            {
                // 4. Place caret on WriteLine
                //    Rearrange within the if statement
                //    Move out of if statement
                //    Move above and below if statement
                //    Move into the if statement
                Console.WriteLine("Hello");
                Console.WriteLine("World");
            }
        }