Esempio n. 1
0
 public static string getForecastURL(City city)
 {
     return(String.Format(
                "{0}forecast?q={1},pt&units=metric&{2}",
                Endpoint,
                city.getName(),
                Key
                ));
 }
Esempio n. 2
0
 public static string getWeatherURL(City city)
 {
     return(String.Format(
                "{0}weather?q={1},pt&units=metric&{2}",
                Endpoint,
                city.getName(),
                Key
                ));
 }