コード例 #1
0
        public override bool Equals(Object o)
        {
            if (this == o)
            {
                return(true);
            }
            if (o == null || GetType() != o.GetType())
            {
                return(false);
            }
            MemoText memoText = (MemoText)o;

            return(Equals(MemoTextValue, memoText.MemoTextValue));
        }
コード例 #2
0
        public void ContainsMemo()
        {
            Stellar.MemoText memo = Stellar.Memo.Text("Mobius authentication");

            Assert.Equal(memo, _fixture.Tx.Memo);
        }