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 trialKiem Ruach
2,267 PointsC# challenge
Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement Not sure what i did wrong
1 Answer
Steven Parker
231,198 PointsI'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.
Kiem Ruach
2,267 PointsKiem Ruach
2,267 Pointsnamespace Treehouse.CodeChallenges { class Square : Polygon { public double SideLength { get; private set; } public double factor { get; set; } public double Area => SideLength*SideLength;
} Steven Ok i passed the challenge, but i feel like scale isnt even a method anymore.