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 trial2 Answers
Hugh Veal
3,250 PointsThe challenge asks you to: "Declare a variable named firstName and initialize it to the string returned from a call to Console.ReadLine()." So to start, you need to break this into simple steps. First, declaring a variable is a fundamental skill you will need for most programming languages. This can be done, like so:
var firstName = "Chris";
To read from the console, you can use:
string userinput = Console.ReadLine();
To combine the two tasks can be done like so:
var firstName = Console.ReadLine();
Adrian Bogdan Grijincu
2,819 PointsConsole.Write("Enter your firstName :"); string firstName = Console.ReadLine();
Steven Parker
231,210 PointsFYI: Treehouse discourages leaving explicit solutions without explanations.
Steven Parker
231,210 PointsSteven Parker
231,210 PointsIt doesn't look like you've written any code yet.
At least please give it a good-faith attempt and then ask for help if you have trouble, and be sure to show your code.