コード例 #1
0
ファイル: Day.cs プロジェクト: kathryn-lawton/LemonadeStand
 public Day(string name, Weather weather)
 {
     this.Name        = name;
     this.Condition   = weather.CreateDailyCondition();
     this.Temperature = weather.CreateDailyTemperature();
 }