Beispiel #1
0
 public TrafficLightDigits(Digit high, Digit low) : this()
 {
     High = high;
     Low  = low;
 }
Beispiel #2
0
 public TrafficLightDigits(string high, string low) : this()
 {
     High = new Digit(high);
     Low  = new Digit(low);
 }