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 Encapsulation with Properties Expression Bodied Members

Kiem Ruach
Kiem Ruach
2,267 Points

C# challenge

Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement Not sure what i did wrong

Kiem Ruach
Kiem Ruach
2,267 Points

namespace Treehouse.CodeChallenges { class Square : Polygon { public double SideLength { get; private set; } public double factor { get; set; } public double Area => SideLength*SideLength;

    public Square(double sideLength) : base(4)
    {
        SideLength = sideLength;
    }

    public double Scale => SideLength*factor;

}

} Steven Ok i passed the challenge, but i feel like scale isnt even a method anymore.

1 Answer

Steven Parker
Steven Parker
229,670 Points

I'm surprised this passed because you are right, that's not a method but a property. Plus it references an undefined "factor".

To keep it a method, it needs to keep the parameter declaration in the parentheses that it had originally. Plus the original code modifies "SideLength" using a different operator, which this code should do also.