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 trialAdam Johnson
1,317 PointsC# 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
string language = Console.ReadLine();
if (language == ("C#"));
{
Console.WriteLine ("C# Rocks!");
}
2 Answers
Stuart Wright
41,120 PointsThe 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
1,396 PointsWhy are you writing the string inside parentheses?
Stuart Wright
41,120 PointsDidnβt notice those, yes thereβs no need for them.