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 trialFabiola Barrientos
9,467 PointsHow do I add constructor
I dont understand what way I must write the constructor in this code, I've tried everything
namespace Treehouse.CodeChallenges
{
class Frog(1, 2)
{
public readonly int TongueLength;
}
}
1 Answer
Steven Parker
231,198 PointsHere's a few hints:
- don't change the
class
line itself - a constructor definition will be contained inside the class
- a constructor has the same name as the class, and is just like a method but it has no return type
- parameters must have an explicit type
- parameter names cannot be (or start with) numbers
- the instructions say this constructor should have only one parameter
- for an example, review the Object Initialization video starting around 0:20
Fabiola Barrientos
9,467 PointsFabiola Barrientos
9,467 Pointsthank you very much!!! it didnt take much for me to solve this after your advice!