Esempio n. 1
0
 public Tinta(ConsoleColor color, EtipoTinta tipo) : this(color)
 {
     this._Tipo = tipo;
 }
Esempio n. 2
0
 public Tinta()
 {
     this._Color = ConsoleColor.Blue;
     this._Tipo  = EtipoTinta.Comun;
 }
 public Tinta()
 {
     this.color     = ConsoleColor.Red;
     this.tipoTinta = EtipoTinta.Comun;
 }
Esempio n. 4
0
 public Tinta(ConsoleColor color, EtipoTinta tipo)
 {
     this.color = color;
     this.tipo  = tipo;
 }
Esempio n. 5
0
 public Tinta(EtipoTinta tipo) : this()
 {
     this.tipo = tipo;
 }
Esempio n. 6
0
 public Tinta()
 {
     this.color = ConsoleColor.Blue;
     this.tipo  = EtipoTinta.ConBrillo;
 }