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

Abigail Puckett
Abigail Puckett
2,110 Points

Empty namespace titled "Frog"

I'm not sure what I'm missing here.

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

        }
    }
}
Frog.cs
namespace Treehouse.CodeChallenges
{
    Frog frog = new Frog();
}

1 Answer

Travis Alstrand
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Travis Alstrand
Treehouse Teacher

Hey there Abigail Puckett ! :wave:

The first task is asking you to define a new Class named Frog in Frog.cs, but you're currently trying to instantiate a new instance of a Frog class.

Task 1 Frog.cs

namespace Treehouse.CodeChallenges
{
    public class Frog 
    {

    }

}

I hope this helps!