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 Inheritance Throwing Exceptions

Multiple arguments handed to OnMap?

When map.OnMap(this) is called, and the object being created is passed (this), OnMap is expecting two arguments (x and y). But our MapLocation object is constructed with three arguments (x, y, and map). How does the OnMap method know to use the x and y values? Is it because they are the first two arguments passed? What would happen if we changed the order of the parameters?

1 Answer

Steven Parker
Steven Parker
230,274 Points

The OnMap method can take a single argument of type "Point". Since a "MapLocation" inherits from "Point", it is valid to pass it (this) as the argument.

The x and y values are contained inside the object.