コード例 #1
0
ファイル: VoidValue.cs プロジェクト: Kav2018/JavaForVS
        public bool Equals(IVoidValue other)
        {
            if (other == null)
                return false;

            return this.VirtualMachine.Equals(other.GetVirtualMachine());
        }
コード例 #2
0
        public bool Equals(IVoidValue other)
        {
            if (other == null)
            {
                return(false);
            }

            return(this.VirtualMachine.Equals(other.GetVirtualMachine()));
        }
コード例 #3
0
 public bool Equals(IVoidValue other)
 {
     throw new NotImplementedException();
 }