Given a collection of Location objects which have a longitude and latitude, how can I sort this list based on each Locations distance to a current Location object?
I have a method which can calculate the distance in meters between two Location objects.
Is Collections.Sort()
appropriate here?