I need a function where if I pass class name or object of class with dataTable that function should return List<Object_Of_Class_Pass_In_Function>.
Ex :
Public List<xy> ChnageDtToList(DataTable dt, <Here Dynamic Object Of Any Custom Class say xy>)
{
//
Return List<xy>
}
How to create above function ?