3
Answers

data table to list

I have the data table had three columns Number ,Name ,Date time in 12 hour format.I want to append the data table to list item and i wish to change the 12 hour format to 24 hour format.How to do this? suggest some ideas.
  1. DataTable dt = new datatable();  
  2.      List<DataRow> list = new List<DataRow>(dt1.Select());  
Answers (3)