Fhnw.Ecnf.RoutePlanner.RoutePlannerLib.WayPoint.WayPoint C# (CSharp) Method

WayPoint() public method

public WayPoint ( string name, double latitude, double longitude ) : System
name string
latitude double
longitude double
return System
        public WayPoint(string name, double latitude, double longitude)
        {
            this.Name = name;
            this.Latitude = latitude;
            this.Longitude = longitude;
        }