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 trialaditya yadav
Courses Plus Student 137 PointsPlease help with the code
Kindly help with code
using (System);
Class program
{
static void Main()
{ string firstName;
firstNanme=Console.ReadLine();
}
}
1 Answer
Chris Stowe
2,450 PointsI do not think you are required to create the class in the code challenge.
Try the following:
- Remove the parenthesis from the "using (System);" statement.
- Change "Class" to "class".
- Change "static void Main()" to "public static void Main()".
I hope this helps.