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

steeve Francois
PLUS
steeve Francois
Courses Plus Student 572 Points

can someone me with this.....Use Console.WriteLine to print the contents of the firstName variable to the screen.

I did the first two line but there is something wrong with the third one

CodeChallenge.cs
string firstName;
string fisrtName = Console.ReadLine();
Console.WriteLine("firstName");

2 Answers

Steven Parker
Steven Parker
229,670 Points

Don't put quotes around your variable name.

That makes it a literal string, but you want to use the variable which represents the name that was assigned.

Also, you can only declare a variable once, whether or not you initialize it at the same time. So you don't need the first line at all.

I tried this answer.

  1. It worked for me without the second object 'string'
  2. Careful of the spelling for the firstName variable on line two :-)