I have this DataTAble
DataTable dt = new DataTable(); dt.Columns.Add("A"); dt.Columns.Add("B"); dt.Rows.Add("1", "5"); dt.Rows.Add("6", "10"); dt.Rows.Add("11", "15"); How can I convert this DataTable to get a list like this
List<string> dtList= new List<string> { "1", "5", "6", "10", "11", "15" };