Easiest way to merge a changed list to the master list
Posted
by
Kiran Chandrashekhar
on Stack Overflow
See other posts from Stack Overflow
or by Kiran Chandrashekhar
Published on 2012-12-11T04:48:43Z
Indexed on
2012/12/11
5:04 UTC
Read the original article
Hit count: 274
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 ?
© Stack Overflow or respective owner