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

Goodnight Can you help me with this string concatenation. C# basics

Goodnight I am suppose to concatenate the word rocks to firstName as part of my coding challenge after the lesson, just cant seem to get it right. the 3rd line of code is where im getting the problem.

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

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

3 Answers

Brendan Whiting
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Brendan Whiting
Front End Web Development Techdegree Graduate 84,735 Points

1) They want the variable firstName again, not the string literal "firstName".

2) You need to add a space in " rocks" otherwise it will be smushed together when you concatenate. (This seems to be the case in the first version of the code in your question but not the 2nd, not sure why).

Thanks guys, just amazing , it worked.