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 trialRahul Gupta
667 PointsCode Error in Code Challenge that i am stuck on.
So i have tried this code on VS and it works but on the code challenge page it dosent . Any help would be appreciated . Thanks
string language = Console.ReadLine();
if (language == "C#")
{
Console.WriteLine(“C# Rocks!”);
}
1 Answer
Hugh Veal
3,250 PointsI think the issue might be where you typed the code. I have typed code, in the past, inside a text editor that understands (rtf, doc, docx, tif, etc.). While these formats are great for text decoration, they are problematic for code environments, which is what I think the problem is here. Replace the quotation marks in the environment by removing them and typing them in the environment itself and you should see the code work.
Rahul Gupta
667 PointsRahul Gupta
667 PointsGot it . Thanks anyhow :)