Exemplo n.º 1
0
        //Update weather
        public void CheckWeather()
        {
            WeatherAPI DataAPI = new WeatherAPI(City);

            Temperature = DataAPI.GetTemp();
            Condition   = DataAPI.GetCondition();
        }
        //Update weather
        public void CheckWeather()
        {
            WeatherAPI DataAPI = new WeatherAPI(City);

            temp      = DataAPI.GetTemp();
            condition = DataAPI.GetCondition();
        }