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

antoine winzenried
antoine winzenried
812 Points

I cannot understand my mistake

Hi there, I cannot understand where is my mistake. Could you help me?

Best regards

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

1 Answer

Steven Parker
Steven Parker
229,786 Points

The instructions for task 1 said, "Declare a variable named firstName and initialize it to the string returned from a call to Console.ReadLine().", and you declared "firstName" but initialized another variable named "entry" instead.

Apparently you discovered a bug in the validator, because it passed this answer when it should have been marked incorrect. But made it impossible to complete the next task.

Start over, and be careful to follow the task 1 instructions. Then task 2 should be possible to pass also.

You might want to report the bug to the staff as described on the Support page.