示例#1
0
 public Cookie(int weight, string shape, Colour c)
 {
     this.Weight = weight;
     this.Shape  = shape;
     this.CLR    = c;
 }
示例#2
0
 // constructors
 public Cookie()
 {
     this.Weight = 0;
     this.Shape  = "";
     this.CLR    = null;
 }