示例#1
0
        public bool Equals(BigCellViewModel obj)
        {
            if ((object)obj == null)
            {
                return(false);
            }

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

            BigCellViewModel p = obj as BigCellViewModel;

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

            return(this.Equals(p));
        }