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 Inheritance Inheritance

Jericoe States
Jericoe States
3,262 Points

It it possible to create a class within a class?

It doesn't seem like I can create another tab to create a new class on.. is it even possible to create a class within a class?! that doesn't seem logical. None to less I'm super confused can someone break down whats being ask and how to attack the problem?

Polygon.cs
namespace Treehouse.CodeChallenges
{
    class Polygon : Square
    {
        public readonly int NumSides;
        public readonly int SideLength;

        public Polygon(int numSides) : Square(int sideLength)
        {
            NumSides = numSides;
        }
    }

}

1 Answer

Steven Parker
Steven Parker
229,732 Points

Don't forget the warning in the instructions: "Important: In each task of this code challenge, the code you write should be added to the code from the previous task."

The original code should remain as-is and your new class can be added to the same tab. You're right that it should not go inside the other class, but both classes can be on the same tab (and inside the same namespace).