cannot implicitly convert type system.collections.generic.List to System.Data.DataTable
List<string> selectedCustomer = new List<string>();
selectedCustomer.Add(CustomerID);
selectedCustomer.Add(FirstName);
selectedCustomer.Add(LastName);
DataTable dt = selectedCustomer;
How can this error message above be resolved?