Chromatics.Chromatics.weatherLoop C# (CSharp) Метод

weatherLoop() приватный Метод

private weatherLoop ( ) : void
Результат void
        void weatherLoop()
        {
            if (skyWatcher.Enabled == true)
            {
                if (currentWeather != calculateWeather(currentZone)[0])
                {
                    currentWeather = calculateWeather(currentZone)[0];
                    setWeather(calculateWeather(currentZone));
                }
            }
        }
Chromatics