TheAirline.Models.General.Environment.Weather.Weather C# (CSharp) 메소드

Weather() 공개 메소드

public Weather ( System.DateTime date, eWindSpeed windspeed, WindDirection direction, CloudCover cover, Precipitation precip, HourlyWeather temperatures, double temperatureLow, double temperatureHigh ) : System
date System.DateTime
windspeed eWindSpeed
direction WindDirection
cover CloudCover
precip Precipitation
temperatures HourlyWeather
temperatureLow double
temperatureHigh double
리턴 System
        public Weather(
            DateTime date,
            eWindSpeed windspeed,
            WindDirection direction,
            CloudCover cover,
            Precipitation precip,
            HourlyWeather[] temperatures,
            double temperatureLow,
            double temperatureHigh)
        {
            Date = date;
            WindSpeed = windspeed;
            Direction = direction;
            Cover = cover;
            Precip = precip;
            Temperatures = temperatures;
            TemperatureLow = temperatureLow;
            TemperatureHigh = temperatureHigh;
        }

Same methods

Weather::Weather ( SerializationInfo info, StreamingContext ctxt ) : System