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

Walter Garretsen
Walter Garretsen
542 Points

assign a string value

What is wrong with the string assingnment on line two. Who can tell me what I do wrong?

Walter.

CodeChallenge.cs
string bookTitle;
bookTitle = "WalterBook";

1 Answer

Hi Walter!

You are almost there! If you go back and create the variable and assign it on one line the challenge will pass.

For example, the code below passed the challenge fine:

string bookTitle = "Hi";

I hope that this helped you out!

-Luke