Easiest way to merge a changed list to the master list
- by Kiran Chandrashekhar
I have a two lists of class object :
private List<IntVector> UserData = new List<IntVector>();
private List<IntVector> EditData = new List<IntVector>();
UserData is the Master List and EditData is another list which would be used to add, delete, or modify the list. One of the class memeber is CaseNo which would not change for an IntVector.
I have made changes in the EditData and would like to merge the changes to the UserData.
Any idea how to do it ?