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 Object-Oriented Programming Initialization

Ziv Aviv
PLUS
Ziv Aviv
Courses Plus Student 496 Points

Constructors

Hello guys i need help solving this task (task 3) and i will be glad if someone can pls explain me what constructors are? im so confused and really need help Thanks

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


    }
}

1 Answer

Raffael Dettling
Raffael Dettling
32,998 Points

First the paramter of the Frog function should be named tongueLength this parameter only exists inside the frog function so in your case you only got a class variable named TongueLength and a function parameter named the same. So in context there isnยดt a variable tongueLength because you didnยดt declared it. tongueLength =! TongueLength :)

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