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

can't find the issue, the preview editor doesn't even give me an error

I did what the question was asking. it says Bummer , but when I look at preview to see what my error is , it doesn't throw any error. Not sure what I am doing wrong.

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

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

        public bool EatFly (int distanceToFly)
        {
            bool canReach = (TongueLength == distanceToFly);
            return canReach;
        }
    }
}

1 Answer

Your bool should be declared as following

bool canReach = (TongueLength >= distanceToFly);

Since you want to have the frog catch the fly if his tongue is as long as the distance, and if his tongue is LONGER than the distance, you want your bool to check if the tongue length is greater or equal to the distance to the fly.