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# Objects Object-Oriented Programming Instantiation

Create a Frog instance in Program.Main() and assign it to a variable named mike.

whats wrong with it?

Program.cs
namespace Treehouse.CodeChallenges
{
    class Program
    {
        static void Main()
        {            

        }
    }
}
Frog.cs
namespace Treehouse.CodeChallenges
{
class Frog
{
    public static void Main()
    { 
        var mike= new Frog();
    }
}
}

2 Answers

Dave Harker
PLUS
Dave Harker
Courses Plus Student 15,510 Points

Hi Andrew,

I think you might have just misread the challenge. I'd suggest 'resetting' it and trying from scratch as you're clearly on the right track just perhaps a little mixed up.

Stop reading here if you want to have another crack at it :)






OK, so if you're just looking for the solution, here it is:

Program.cs

namespace Treehouse.CodeChallenges
{
    class Program
    {
        static void Main()
        {            
           Frog mike = new Frog();
        }
    }
}

Frog.cs

namespace Treehouse.CodeChallenges
{
    class Frog {}
}

Have fun,

Dave.

Elfar Oliver
Elfar Oliver
3,924 Points

var Mike = new Frog(); also worked