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

Adam Johnson
Adam Johnson
1,317 Points

C# rocks

im supposed to WriteLine "C# rocks" when ReadLine is "C#". Language is the assigned variable for Console.Readlline. The simplest way i can think of is to;

if (language == ("C#")); { Console.WriteLine ("C# Rocks!"); }

I get an error message saying that "I entered in 'bogus' and got 'C# rocks'" I have no idea

CodeChallenge.cs
string language = Console.ReadLine();
if (language == ("C#"));
    {
        Console.WriteLine ("C# Rocks!");
    }

2 Answers

Stuart Wright
Stuart Wright
41,118 Points

The semi colon at the end of your if statement is the problem - remove it and the code will run as you intend it to:

string language = Console.ReadLine();
if (language == ("C#"))
    {
        Console.WriteLine ("C# Rocks!");
    }
Liam Andersson
Liam Andersson
1,396 Points

Why are you writing the string inside parentheses?

Stuart Wright
Stuart Wright
41,118 Points

Didn’t notice those, yes there’s no need for them.