예제 #1
0
        public void RemoveLastOperation()
        {
            int count = AllPriorOperationsCount;

            if (count > 0)
            {
                AllPriorOperations.RemoveAt(count - 1);
                iLastOperation = LastOperation;
            }
        }
예제 #2
0
 public void AddNewPriorOperation(MemOpBase aItem)
 {
     iLastOperation = aItem;
     AllPriorOperations.Add(aItem);
     aItem.OperationIndex = AllPriorOperationsCount;
 }