Exemplo n.º 1
0
        public override bool Equals(object obj)
        {
            TxDestination item = obj as TxDestination;

            if (item == null)
            {
                return(false);
            }
            return(Utils.ArrayEqual(_DestBytes, item._DestBytes) && item.GetType() == this.GetType());
        }