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 trialAlex Smutny
649 PointsNot sure what I am doing wrong and there is no help on this one :/
How do you instantiate Frog?
namespace Treehouse.CodeChallenges
{
class Program
{
static void Main()
{
var mike = new Frog;
}
}
}
namespace Treehouse.CodeChallenges
{
class Frog
{
}
}
Alex Smutny
649 PointsIndiya Gooch Thank you very much! :D I got it right before I saw your post.
1 Answer
R S
2,255 PointsThere are two issues with your code 1) You are trying to construct a Frog object without properly writing the constructor, you need () after the Frog to construct the frog object. try writing new Frog();
2) When you create a frog object you want to assign it to a variable/type Frog and not a generic var
In conclusion your code should look like Frog frog = new Frog();
Indiya Gooch
12,075 PointsIndiya Gooch
12,075 PointsIn the Program.cs file, you want:
The term for creating an object from a class is called instantiation, above we just instantiated an object(mike) from the frog class.