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

jack Sandberg
jack Sandberg
1,659 Points

I don't understand what I am doing wrong here

I am creating a method with the correct name and returning a bool ...but apperently i am not .. im confused about the error ...

Frog.cs
namespace Treehouse.CodeChallenges
{
    class Frog
    {
        public readonly int TongueLength;

        public Frog(int tongueLength)
        {
            TongueLength = tongueLength;
        }

        public EatFly(int distanceToFly)
        {

        bool food = distanceToFly < tongueLength;
        bool notfood = distanceToFly > tongueLength;


            return food;

        }
    }
}

1 Answer

Steven Parker
Steven Parker
229,744 Points

:point_right: I see a couple of issues:

  • You forgot to declare the (bool) return type of EatFly
  • The EatFly function can't reference tongueLength (the property is TongueLength)
  • (optional) The "food" variable isn't needed, you can return the expression directly
  • (optional) The "notfood" line can be eliminated entirely
        public bool EatFly(int distanceToFly)
        {
            return distanceToFly < TongueLength;
        }