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

I'am getting error here please help ?

Output is not set error ?? why

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 = "You entered " + input + ".";
            }

            Console.WriteLine(output);
        }
    }
}

1 Answer

Jose Gallanosa
Jose Gallanosa
14,175 Points
string output;

The Console.WriteLine(output) statement doesn't know the definition of "output" because "output" is defined within the scope of the if/else statement. You must define "string output" before the if/else statement. The "string" keyword can then be removed from within the if/else statement.

Thank you Jose !! It Worked !! Wow :) :)