Ejemplo n.º 1
0
 public TrafficLightDigits(Digit high, Digit low) : this()
 {
     High = high;
     Low  = low;
 }
Ejemplo n.º 2
0
 public TrafficLightDigits(string high, string low) : this()
 {
     High = new Digit(high);
     Low  = new Digit(low);
 }