Good day all. I was looking through out the forums but have not found anything useful.
I have two custom lists and I need to display third list with differences.
list1[0].Id = 10;
list1[0].Name = "Peter";
list1[0].Age = 45;
list1[0].Group = "Group1";
list1[1].Id = 11;
list1[1].Name = "John";
list1[1].Age = 42;
list1[1].Group = "Group2";
list1[2].Id = 12;
list1[2].Name = "Mike";
list1[2].Age = 32;
list1[2].Group = "Group2";
list2[0].Id = 10;
list2[0].Name = "Peter";
list2[0].Age = 45;
list2[0].Group = "Group2";
list2[1].Id = 11;
list2[1].Name = "John";
list2[1].Age = 48;
list2[1].Group = "Group2";
list2[2].Id = 12;
list2[2].Name = "Mike";
list2[2].Age = 32;
list2[2].Group = "Group2";
I need to generate list 3 which will contain differences record with id 10 and id 11