コード例 #1
0
 public WaffleBuilder SetWaffleType(WaffleType waffleType)
 {
     Confection.WaffleType = waffleType;
     return(this);
 }
コード例 #2
0
ファイル: Waffle.cs プロジェクト: SprayGOD/exercises
 public Waffle(WaffleType waffleType, ManufacturerType manufacturer, int weight, int sugar) :
     base(manufacturer, weight, sugar)
 {
     WaffleType = waffleType;
 }