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 Console I/O

Printing "Enter a book title" to the console using the System.Console.Write() method

I entered what I think is all I need to print "Enter a book title to the console", however it keeps telling me it's wrong. What am I doing wrong?

CodeChallenge.cs
System.Console.Write("Enter a book title:");    

2 Answers

You are missing a space after the colon

You're right, thank you for your help!

Weird, I gave it a try and it worked. You seem to have the right thing going, but I believe maybe Henrik is on to something. I don't like saying this but copy mine, it should work, but press restart before pasting it:

System.Console.Write("Enter a book title: ");

I didn't copy and paste, but it worked, Thank you so much for your help!