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

City() public method

public City ( string name, string country, int population, double latitude, double longitude ) : System
name string
country string
population int
latitude double
longitude double
return System
        public City(string name, string country, int population, double latitude, double longitude)
        {
            this.Name = name;
            this.Country = country;
            this.Population = population;
            this.Location = new WayPoint(name, latitude, longitude);
        }