Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

christopher walsh
7,272 Pointsend of C# quiz
I can't figure out what I'm writing wrong. this is what I'm putting in
string language = Console.ReadLine();
if(language == "C#") { System.Console.WriteLine("C# Rocks!"); } else { System.Console.Write(language + "is not C#.");
}
string language = Console.ReadLine();
if(language == "C#") {
System.Console.WriteLine("C# Rocks!"); }
else { System.Console.Write(language + "is not C#.");
}
1 Answer

Ken Alger
Treehouse TeacherChristopher;
Remember that when we concatenate strings extra spaces must typically be put in ourselves. If you include a space at the beginning of "is not C#" and make it " is not C#" your code seems to work fine.
Happy coding,
Ken
christopher walsh
7,272 Pointschristopher walsh
7,272 Pointsthank you.
Ken Alger
Treehouse TeacherKen Alger
Treehouse Teacher