Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. DataTable table1 = new DataTable("patients");
  2. table1.Columns.Add("name");
  3. table1.Columns.Add("id");
  4. table1.Rows.Add("sam", 1);
  5. table1.Rows.Add("mark", 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement