Exemplo n.º 1
0
        public override bool Equals(Object other)
        {
            if (other == null)
            {
                return(false);
            }
            if (!(other is SenderKeyName))
            {
                return(false);
            }

            SenderKeyName that = (SenderKeyName)other;

            return
                (_groupId.Equals(that._groupId) &&
                 _sender.Equals(that._sender));
        }