예제 #1
0
 // Overloaded constructors
 public SilverState(State state)
     : this(state.Balance, state.Account)
 {
 }
예제 #2
0
 // Overloaded constructors
 public GoldState(State state)
     : this(state.Balance, state.Account)
 {
 }
예제 #3
0
 // Constructor
 public RedState(State state)
 {
     Balance = state.Balance;
     Account = state.Account;
     Initialize();
 }