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#

i'm stuck guys help me thanx in advance

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

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

}

Steven Parker
Steven Parker
230,274 Points

Stuck how? What are you trying to accomplish?
If this is for a code challenge, please provide a link to the course page.

Use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. :arrow_heading_down:
Or watch this video on code formatting.

2 Answers

John Muraski
John Muraski
3,144 Points

Not sure exactly what your stuck on here.

But a couple of things to look at: -if TongueLength is not a global variable, then the class here can't access it, which will throw an error -try putting this instead if TongueLength is in scope: return (TongueLength >= distanceToFly);

But unless we know what your error is, not much else we can say.

Steven Parker
Steven Parker
230,274 Points

I don't see any obvious errors in this code.
It's a bit hard to see since the code is not formatted for Markdown, but "TongueLength" is a class variable.

John Muraski
John Muraski
3,144 Points

Ah, gotcha. I see it now.