Ejemplo n.º 1
0
        public static WeatherObject TryToGetWeather(this WeatherType type, int time, double temperature)
        {
            string footprint = null;

            return(type.TryToGetWeather(time, temperature, ref footprint));
        }
Ejemplo n.º 2
0
 public WeatherObject TryToGetWeather(WeatherType type, int time, double temperature)
 {
     return(type.TryToGetWeather(time, temperature, ref _footprint));
 }