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 trialayyappa koppolu
Courses Plus Student 979 Pointswhat is wrong with following code string firstName=Console.ReadLine(); Console.WriteLine(firstName+“ rocks!”);
string firstName=Console.ReadLine(); Console.WriteLine(firstName+“ rocks!”);
Not sure what is wrong with above code
string firstName=Console.ReadLine();
Console.WriteLine(firstName+“ rocks!”);
1 Answer
Steven Parker
231,210 PointsIt looks like you have the wrong kind of quotes.
Your text seems to be enclosed by word-processor style (sometimes called "curly") quotes instead of the standard kind as would be created by a keyboard. You may have cut them from the instructions and pasted them in.
Copying the inner string is a good idea, but always remember to type the quotes yourself.