예제 #1
0
        public override bool Equals(object obj)
        {
            if ((obj as GridRegion?) == null)
            {
                return(false);
            }

            GridRegion gr2 = (GridRegion)obj;

            return(startRow == gr2.startRow && startCol == gr2.startCol &&
                   endRow == gr2.endRow && endCol == gr2.endCol);
        }