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 Method Overloading

Davit Tavadze
Davit Tavadze
496 Points

Did you add a reactionTime parameter to the Frog constructor after the tongueLength parameter?

I tried everything but I still think that this is a bug

Frog.cs
namespace Treehouse.CodeChallenges
{
    class Frog
    {
        public readonly int TongueLength;
        public readonly int ReactionTime;
        public Frog(int tongueLength, reactionTime)
        {
            TongueLength = tongueLength;
            ReactionTime = reactionTime;


        }

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

2 Answers

Steven Parker
Steven Parker
229,788 Points

:point_right: You forgot to indicate the type of the the new parameter.

Unlike a comma in a declaration, the comma in a parameter list doesn't carry over the type from the previous item. Each parameter should be preceded by its type.