public bool Equals(HandActorCache.ActorKey other)
 {
     if (other == null)
     {
         return(false);
     }
     return((this.m_cardType == other.m_cardType) && (this.m_premiumType == other.m_premiumType));
 }
 public override bool Equals(object obj)
 {
     if (obj == null)
     {
         return(false);
     }
     HandActorCache.ActorKey other = obj as HandActorCache.ActorKey;
     return(this.Equals(other));
 }