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) Console I/O Formatting Output

I can't pass this chalenge: "Use the concatenation operator + to append “ rocks!” to the end of the contents of the firs

attached is my code, i keep receiving bummer that my code is faulty. plz help.

CodeChallenge.cs
string firstName = Console.ReadLine();
Console.WriteLine(firstName +   rocks! );
Kevin Jennings
Kevin Jennings
4,384 Points

Those quotes do not look like the standard double quote. I copied your code into Visual Studio, and it immediately complained about those quotes. I replaced them with a standard double quote, and it worked fine.

2 Answers

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Eugenio;

It looks like you are using the wrong character for your quotes around rocks! Did you just cut and paste from the task instructions?

Happy coding,
Ken

Thanx Guys,

Can't believe this was holding me back. Many thanx.