Overrid Equals Defined Operator

 public class Common
    {

        public override int GetHashCode()
        {
            return base.GetHashCode();
        }
        public override bool Equals(object obj)
        {
            return base.Equals(obj);
        }
        public int WeightMax { get; set; } = 0;
        public int WeightLarge { get; set; } = 0;
        public int WeightSmall { get; set; } = 0;
        public int WeightMin { get; set; } = 0;
        public static bool operator ==(Common m1, Common m2)
        {
            if (m1.WeightLarge == m2.WeightMax) return true;
            return false;
        }
        public static bool operator !=(Common m1, Common m2)
        {
            if (m1.WeightMax != m2.WeightLarge) return true;
            return false;
        }
    }

 

posted @ 2017-04-20 16:01  Javi  阅读(235)  评论(0编辑  收藏  举报