Google.Maps.DistanceMatrix.DistanceMatrixRequest.EnsureWaypointsDestination C# (CSharp) Method

EnsureWaypointsDestination() private method

private EnsureWaypointsDestination ( ) : Location>.SortedList
return Location>.SortedList
        private SortedList<int, Location> EnsureWaypointsDestination()
        {
            if(_waypointsDestination == null)
            {
                _waypointsDestination = new SortedList<int, Maps.Location>();
            }
            return _waypointsDestination;
        }