Ejemplo n.º 1
0
 public Card(string c, string n)
 {
     this.color  = c;
     this.number = n;
     this.Title  = String.Format("play card: {0} {1}", this.number, this.color);
     this.CH     = new CardHistory();
 }
Ejemplo n.º 2
0
 public Card()
 {
     this.color  = "";
     this.number = "";
     this.CH     = new CardHistory();
 }