Click here to Skip to main content
15,896,486 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to add multiple data to a created datacolumn in exisiting datatable..
System.Data.DataColumn newColumn = new System.Data.DataColumn("Foo", typeof(System.String));
          newColumn.DefaultValue = "LicenseQty";
          dtsoftware.Columns.Add(newColumn);

Here I want to add four values LicenseQty,FreeQty to this datacolumn alone...
Posted
Updated 15-May-13 4:58am
v2
Comments
Richard C Bishop 15-May-13 10:59am    
You have been around here long enough now that you need to start formatting your threads properly.

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900