コード例 #1
0
 public bool Equals(CollectionActorPool.ActorKey other)
 {
     if (other == null)
     {
         return(false);
     }
     return(((this.m_cardType == other.m_cardType) && (this.m_owned == other.m_owned)) && (this.m_premiumType == other.m_premiumType));
 }
コード例 #2
0
 public override bool Equals(object obj)
 {
     if (obj == null)
     {
         return(false);
     }
     CollectionActorPool.ActorKey other = obj as CollectionActorPool.ActorKey;
     return(this.Equals(other));
 }