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

If C#

Hey guys and girls, I am having severe trouble on the C# If task. It tells me to print “C# Rocks!” to the console if language equals “C#”. I have done this multiple times and have not gotten a pass. Could someone help me?

Thanks, GamingWithHan

CodeChallenge.cs
string language = Console.ReadLine();
Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

Could you please post the code you're trying so others can help you troubleshoot. :)

:dizzy:

Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

I agree with Jason Anders here. This is likely to be a better overall learning experience for you if we can see what you've tried that's failing so we can say with some certainty what you're missing/not understanding. I would be glad to assist, but would definitely like to see what you've attempted first. Could you please post the code you've tried that's failing so that we might better assist you? :sparkles:

1 Answer

Steven Parker
Steven Parker
229,644 Points

It doesn't look like you've written any code yet.

But here's some hints: You'll need a test (if statement) to check what language contains, and an output statement (calling Console.WriteLine) to show the message when the condition is true.