Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Basics (Retired) Perfect Variable Scope

Scoping Assistance Is Needed

Attempted different ways to change the scoping but ran into various issues. Do not see the error. Thanks for any assistance.

Program.cs
using System;

namespace Treehouse.CodeChallenges
{
    class Program
    {
             string output = "";
        static void Main()
        {           
            string input = Console.ReadLine();  

               if (input == "quit")
            {
                string output = "Goodbye.";
            }
            else
            {
                string output = "You entered " + input + ".";
            }

            Console.WriteLine(output);
        }
    }
}

1 Answer

Steven Parker
Steven Parker
229,786 Points

:point_right: Maybe a few hints will help:

  • declaring output outside of the conditionals was a good idea. But it should still be inside the method.
  • remember that you can assign something multiple times, but you can only declare it once.
  • declare something in two scopes, the inner one will "hide" the outer one.