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) Perform if / else

Luis Santos
Luis Santos
3,566 Points

I am struggling with this challenge on C#.....HELP!!!

I don't understand why the ELSE function will not work with the remainder of the code, I am god smacked.

CodeChallenge.cs
string language = Console.ReadLine();

if(language == "C#")
{
  System.Console.WriteLine("C# Rocks!");
  {
else
  }
   System.Console.WriteLine(language + "is not C#");
}
if ( language!= "cheese")
{
  System.Console.WriteLine("Cheese is not C#");
}
}

2 Answers

Steven Parker
Steven Parker
229,670 Points

You're pretty close. Here are a few hints:

  • the braces on either side of your else are pointing the wrong way
  • you can remove everything related to testing for "cheese" and below, it will be covered by the else above
  • you are missing a space at the beginning of " is not C#"
Luis Santos
Luis Santos
3,566 Points

Thanks Steven, I finally figured it out.

Take a close look at your code.

There is something wrong with your brackets. You also don't need the second if and there is an extra bracket there.