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 Variables

how to initialize a string?

how to initialize a name to a string?

CodeChallenge.cs
 string bookTitle = ("i too had a love story");

1 Answer

Kevin Gates
Kevin Gates
15,052 Points

You don't need parenthesizes.

 string bookTitle = "i too had a love story";

thank you.

Kevin Gates
Kevin Gates
15,052 Points

Hi Prasanth, if you found this answer helpful (which it appears you did), will you consider marking it "Best Answer"? This will show other students that your question was answered and will more easily assist them if they have a similar question.

Thanks!