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 trialLee Li
1,982 PointsC# Basic
Write code to print “C# Rocks!” to the console if language equals “C#”.
string language = Console.ReadLine();
if (language == "C#")
{
Console.ReadLine(C# Rocks!);
}
1 Answer
Jennifer Nordell
Treehouse TeacherThere's two itsy bitsy problems that are causing this to fail. You're using Console.ReadLine where you should be using Console.WriteLine. And secondly, the thing inside the parentheses should be a string. We denote a string by puting quotations around it. In short, you're missing quotations in the line that should be a WriteLine :) Take a look here:
string language = Console.ReadLine();
if (language == "C#")
{
Console.WriteLine("C# Rocks!");` // Note the WriteLine and the quotes!
}
Jennifer Nordell
Treehouse TeacherJennifer Nordell
Treehouse TeacherFor some reason the markdown is refusing to show my quote marks! But replace the " with ".