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 trialDelaine Teddy R Ndau
3,437 Pointsvariables
hie guys cn u help me out here how do i Declare a variable named firstName and initialize it to the string returned from a call to Console.ReadLine()
Console.ReadLine();
1 Answer
Fredrik Rönnehag
2,342 PointsJust like you would declare a variable of type int or string.
string name = "John";
Except here you ask the user to input his name and you save it in a string variable named firstName.
string firstName =
// I leave the last part to you!
Delaine Teddy R Ndau
3,437 PointsDelaine Teddy R Ndau
3,437 Pointsokay thnks ey got it