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 trialAhmed M
4,008 Pointsc# constructors
why do we do this in the body of the constructor "X = x; Y = y; "
class Point { public readonly int X; public readonly int Y;
public Point(int x, int y)
{
X = x;
Y = y;
}
}
1 Answer
Steven Parker
231,198 PointsThose assignments copy the values that were passed to the constructor (the lower-case x and y) into the fields (or properties) of the object (capital X and Y) so they can be saved and used later.
Ahmed M
4,008 PointsAhmed M
4,008 Pointsoh ok thx Very much