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

How to Use the concatenation operator + to append “ rocks!” to the end of the contents of the firstName variable and pri

How to Use the concatenation operator + to append “ rocks!” to the end of the contents of the firstName variable and print it to the screen using Console.WriteLine

CodeChallenge.cs
string firstName = Console.ReadLine();
Console.WriteLine("" + firstName + " rocks!");

3 Answers

Justin Horner
STAFF
Justin Horner
Treehouse Guest Teacher

Hello Raj,

I believe the only issue is that you have "" + firstName on the second line. You only need firstName + to append a string to the end.

I hope this helps.

Steven Parker
Steven Parker
229,788 Points

:point_right: You did well appending " rocks!", but...

Appending an empty string in front of your name serves no purpose. And while in actual practice it would do no harm either, in this case it is confusing the challenge checker.

Thanks for the reply. Actually I solved this error already but forget to update the question here. BTW thanks again.

Steven Parker
Steven Parker
229,788 Points

Remember to choose a "best answer" to indicate the question is closed.