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

Giannis Kataras
Giannis Kataras
1,279 Points

Cant understand teh second task of the challenge can someone help?

I cant seem to overcome the second task can someone explain step by step please?

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

        public GetNumFliesEaten()
        {
            return _numFliesEaten;
        }

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

2 Answers

Steven Parker
Steven Parker
229,783 Points

You're very close, but you still need to declare what type of value will be returned by GetNumFliesEaten.

Giannis Kataras
Giannis Kataras
1,279 Points

Oh ok i see what you mean now! Thanks.