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

                if ((object)rhs == null)
                {
                    return(false);
                }

                return(this == rhs);
            }
示例#2
0
            public override bool Equals(object rhsObj)
            {
                if (rhsObj == null)
                {
                    return(false);
                }

                if (GetType() != rhsObj.GetType())
                {
                    return(false);
                }

                Good8 rhs = (Good8)rhsObj;

                return(this == rhs);
            }
示例#3
0
 public bool Equals(Good8 rhs)
 {
     return this == rhs;
 }
示例#4
0
 public bool Equals(Good8 rhs)
 {
     return(this == rhs);
 }