Hi guys i have two lists of the class Student
List<Student> group1= new List<Trade>();
List<Student> group2= new List<Trade>();
public class Student
{
public string First_Name{ get; set; }
public string Surname{ get; set; }
public string Age{ get; set; }
}
i would like to do a join that enables me to see those that are only in 1 group.
ideal output being a datatable with column 1 showing those that only in group1 and column2 representing those only in group2
any help would be really appreciated. I am struggling to get my head around joins