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#

Suban Purushothmakumar
Suban Purushothmakumar
3,306 Points

GetLocationAt method return type missing

Hi,

with regards to the GetLocationAt method which is currently

public GetLocationAt(int pathStep) { if (pathStep< _path.Length) { return _path[pathStep]; } else { return null; } }

Since we are returning things here shouldn't the it be the following

public MapLoation GetLocationAt(int pathStep) { if (pathStep< _path.Length) { return _path[pathStep]; } else { return null; } }

Suban Purushothmakumar
Suban Purushothmakumar
3,306 Points

actually ignore this i watched the end of the video and noticed it was corrected. Thanks

Steven Parker
Steven Parker
231,110 Points

Suban Purushothmakumar — You can delete the question by clicking on the little rectangle with the 3 dots and selecting the delete option.

Happy coding!