コード例 #1
0
 public Person(Network network)
 {
     this.network = network;
     network.Subscribe(this);
 }
コード例 #2
0
 public Person(Network network, int location)
 {
     this.network  = network;
     this.Location = location;
     network.Subscribe(this);
 }