Is it Possible to merge two Columns to a single column for only one row in a datatable using C#? similar to Merge cells option of the excel
DataTable table = new DataTable();
table.Columns.Add("Column1",typeof (String))
table.Columns.Add("Column2",typeof (String))
table.Columns.Add("Column3",typeof (String))
table.rows.add(table.newrow());
i want to merge column2 and column3 for only first row of the Datatable.