Esempio n. 1
0
 public IC_Server(IC_Master master, string name, Int64 owner)
 {
     this.master   = master;
     this.name     = name;
     this.owner    = owner;
     this.guid     = Guid.NewGuid();
     this.namehash = String.Format("{0:X}", name.GetHashCode());
 }
Esempio n. 2
0
 public IC_Core()
 {
     this.master = new IC_Master(this);
 }