How To Add Rows & Columns In Datatable

The following code will be describes adding rows& columns in datatable.
  1. DataTable dt;  
  2. dt = new DataTable("Student");  
  3.    
  4. dt.Columns.Add("Name");  
  5. dt.Columns.Add("City");  
  6.    
  7. dt.Rows.Add("aaa""chennai");  
  8. dt.Rows.Add("bbb""kovai");  
  9. dt.Rows.Add("ccc""salem");  
  10. dt.Rows.Add("ddd""trichy");  
  11. dt.Rows.Add("eee""madurai");  
  12. dt.Rows.Add("fff""attur");  
  13. dt.Rows.Add("ggg""chennai");  
  14. dt.Rows.Add("hhh""kovai");