, ?
if so, the easier it will be to add a column in the Visual Studio GUI, set the name and name of the DataPropertyName to what you can recognize, and then add this column to the DataSet.
clNew.Name = "clNew";
clNew.DataPropertyName = "clNew";
ds.Tables[0].Columns.Add("clNew");
The column is now in the dataset, so if you iterate through datarows, you can also access it.
source
share