コード例 #1
0
ファイル: Program.cs プロジェクト: dan-davison/Classes
 public Cookie(int weight, string shape, Colour c)
 {
     this.Weight = weight;
     this.Shape  = shape;
     this.CLR    = c;
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: dan-davison/Classes
 // constructors
 public Cookie()
 {
     this.Weight = 0;
     this.Shape  = "";
     this.CLR    = null;
 }