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