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

Mytch Hagan
Mytch Hagan
1,876 Points

WHAT?

Confusion has set in.

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

        }
    }
}
Frog.cs
namespace Treehouse.CodeChallenges
{
    class Frog
    {
        public void main
        {
            var Frog = "mike"
        }
    }
}

2 Answers

Antonio De Rose
Antonio De Rose
20,884 Points
see the area, I commented out, you have to take that coding out, check question 2,
question - Create a Frog instance in Program.Main() and assign it to a variable named mike.
it is asking you to do it in Program.Main and not in Frog.cs
instantiate Frog class using the mike variable
Frog mike = new Frog();
namespace Treehouse.CodeChallenges
{
    class Frog
    {
        /*public void main
        {
            var Frog = "mike"
        }*/
    }
}
Sean Flanagan
Sean Flanagan
33,235 Points

Thank you Antonio. I made the same mistake. I put the code in the wrong file. Here's my answer:

Program.cs

namespace Treehouse.CodeChallenges
{
    class Program
    {
        static void Main()
        {  
           // Instantiate a new object called mike from class Tower
           Frog mike = new Frog();
        }
    }
}

Mytchell, I hope this helps. And I suggest you watch the video about instantiation as many times as it takes for the knowledge to sink in.

https://teamtreehouse.com/library/instantiation