Example #1
0
        public override bool Equals(object obj)
        {
            if (obj.GetType() != typeof(CheckPoint))
            {
                return(false);
            }
            CheckPoint other = (CheckPoint)obj;

            bool result = true;

            result &= PointName == other.PointName;
            result &= List_ID == other.List_ID;
            result &= PointDescription == other.PointDescription;
            result &= HelpText == other.HelpText;
            result &= Note == other.Note;
            result &= SortingNr == other.SortingNr;

            return(result);
        }
Example #2
0
 public void backupToOrig()
 {
     orig = clone();
 }