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 Accessor Methods

Setter and Getter - Challenge Task 2 of 2

I'm stuck, and not quite sure I grasp the concept of how setters and getters are constructed in C#.

Can someone explain the how and why my code is wrong? All I've got is compiler errors.

Frog.cs
namespace Treehouse.CodeChallenges
{
    class Frog
    {
        private int _numFliesEaten;
    }

    public int GetNumFliesEaten()
    {
     return _numFliesEaten;
    }

    public void SetNumFliesEaten(int value)
    {
    _numFliesEaten = value;
    }

}

2 Answers

Steven Parker
Steven Parker
229,783 Points

You code is mostly good! Your only issue is a misplaced brace.

Your new code needs to be inside the "Frog" class, so the closing brace for the class needs to be moved down several lines so it will enclose all the new code. Fix that and you should pass the challenge.

That fixed it, thanks!