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

James King
James King
3,670 Points

I'm stuck

I need help on the last code challenge here.

Steven Parker
Steven Parker
230,274 Points

It 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.

2 Answers

The 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
Adrian Bogdan Grijincu
2,819 Points

Console.Write("Enter your firstName :"); string firstName = Console.ReadLine();

Steven Parker
Steven Parker
230,274 Points

:unamused: FYI: Treehouse discourages leaving explicit solutions without explanations.