convert class object collection to List
- by prince23
hi,
here i have an return type as class object collection.
where Emp is class , having properties like Fname, lname,Age
WebApplication1.kumar .Job Emp = objEmp.GetJobInfo2(1);
i need to convert the oject collections into List
List objEmp = new List();
what is the steps that i need to do here to convert class object to List
thanks in advance