Guest User

Untitled

a guest
Dec 9th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public void SetListViewHeader()
  2. {
  3.  
  4. _ds = new DataSet();
  5. DataTable table = new DataTable();
  6. _ds.Tables.Add(table);
  7. DataColumn col = new DataColumn("Name", typeof(string));
  8. table.Columns.Add(col);
  9. col = new DataColumn("Date", typeof(DateTime));
  10. table.Columns.Add(col);
  11. }
Add Comment
Please, Sign In to add comment