Esempio n. 1
0
 public override Boolean Equals(AIdentifier obj)
 {
     ArchiveID id = obj as ArchiveID;
     return this.owner == id.owner &&
         this.game == id.game &&
         this.type == id.type;
 }
Esempio n. 2
0
 public override bool Equals(AIdentifier to_me)
 {
     return this.id.Equals(to_me.ToString());
 }
Esempio n. 3
0
 public override Boolean Equals(AIdentifier to_me)
 {
     return Equals(this,to_me as GameID);
 }