コード例 #1
0
 // set up variable constructor
 public Cookie(int w, string s, Colour c)
 {
     this.Weight = w;
     this.Shape  = s;
     this.colour = c;
 }
コード例 #2
0
        // set up default constructor

        public Cookie()
        {
            this.Weight = 0;
            this.Shape  = null;
            this.colour = null;
        }