示例#1
0
        public override bool Equals(object obj)
        {
            PropertyValue pv = obj as PropertyValue;

            bool result = false;

            if (pv != null)
            {
                result = this.GetStringForHashCode() == pv.GetStringForHashCode();
            }

            return(result);
        }
示例#2
0
        public override bool Equals(object obj)
        {
            PropertyValue pv = obj as PropertyValue;

            return(this.GetStringForHashCode() == pv.GetStringForHashCode());
        }