// Create two columns. Set DataType and DefaultValue properties.
   DataColumn col1 = new DataColumn("col1");
   col1.DataType=System.Type.GetType("System.String");
   col1.DefaultValue= "myDefaultValue";
     // Add Columns to the DataTable.
   myTable.Columns.Add (col1);//其中myTable可以换成DataSet中你需要的table