public static RootObject GetSerializedWeatherResponse(string url)
        {
            string  response         = GetForecast(url);
            string  googleSearchText = response;
            JObject googleSearch     = JObject.Parse(googleSearchText);

            //N rsult objects into a list
            winFormsWeatherApp.RootObject serializedWeatherResponse = JsonConvert.DeserializeObject <RootObject>(googleSearchText);
            return(serializedWeatherResponse);
        }
        public static string DeserializedForecast_FeelsLike(string url)
        {
            string  response         = GetForecast(url);
            string  googleSearchText = response;
            JObject googleSearch     = JObject.Parse(googleSearchText);

            //N rsult objects into a list
            winFormsWeatherApp.RootObject deserializedTemp = JsonConvert.DeserializeObject <winFormsWeatherApp.RootObject>(googleSearchText);
            var x = deserializedTemp.hourly_forecast[0].feelslike.english;

            return(x);
        }