예제 #1
0
파일: Test2.cs 프로젝트: Tenarius/HomeWork
        // Десериализация.
        private WeatherResponce SetWeatherResponce(string weather)
        {
            if (!TestForNullOrEmpty(weather))
            {
                weatherResponce = JsonConvert.DeserializeObject<WeatherResponce>(weather);
            }

            return weatherResponce;
        }
예제 #2
0
파일: Test2.cs 프로젝트: Tenarius/HomeWork
        /// <summary>
        /// Поверка на NULL.
        /// </summary>
       private bool IsNullWeather(WeatherResponce weatherResponce)
        {
            if (weatherResponce == null)
            {
                return true;
            }

            if(weatherResponce.Main == null && weatherResponce.Sys == null)
            {
                return true;
            }

            return false;
        }