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 Methods Static vs Instance Methods

Wouldn't it be better if we use a Point parameter in the DistanceTo method?

Why Jeremy didn't use a Point parameter instead of two ints in the DistanceTo method.

public int DistanceTo(Point point) //Isn't that better 
 public int DistanceTo(int x, int y)

1 Answer

Steven Parker
Steven Parker
229,732 Points

You're getting ahead of the class here. In a few more videos, the concept of "overloading" will be introduced and another version of the DistanceTo method will be created which does take a single Point parameter.

But great thinking! I'll bet you're on your way to being an excellent developer!