Exemplo n.º 1
0
 // You can build a new object, containing a legacy object
 // in case you want to expose it to the new application.
 // In this example, we are not doing this.
 public NewPair(Calculator.Pair pair)
 {
     this.pair = pair;
 }
Exemplo n.º 2
0
 public NewPair()
 {
     this.pair = new Calculator.Pair();
 }