コード例 #1
0
 public VIPState(ClubState state)
     : this(state.Balance, state.Account)
 {
     Balance = state.Balance;
 }
コード例 #2
0
 public VisitorState(ClubState state)
     : this(state.Balance, state.Account)             //调用本类的构造函数
 {
 }
コード例 #3
0
 public VIPState(ClubState state)
     : this(state.Balance, state.Account)
 {
     Balance = state.Balance;
 }
コード例 #4
0
 //调用本类的构造函数
 public VisitorState(ClubState state)
     : this(state.Balance, state.Account)
 {
 }
コード例 #5
0
 public MemberState(ClubState state)
     : this(state.Balance, state.Account)             //调用本类的构造函数
 {
     Balance = state.Balance;
     Initialize();
 }
コード例 #6
0
 //调用本类的构造函数
 public MemberState(ClubState state)
     : this(state.Balance, state.Account)
 {
     Balance = state.Balance;
     Initialize();
 }