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

Mytch Hagan
Mytch Hagan
1,876 Points

What?

I am confusion.

Program.cs
using System;

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

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

1 Answer

Steven Parker
Steven Parker
230,274 Points

Hi, confusion. I am information. :laughing:

I see you fixed the missing declaration of "input" ... now take a look at "output". Things to think about:

  • a variable should only be declared or initialized once
  • a variable should be declared in the widest scope in which it is used
  • a variable can be assigned any number of times

Also don't move any statements, that alters the intended behavior of the code. That WriteLine call needs to go back to where it was. (Hint: that's not one of the lines you need to make changes to).