Hi,
i have a c# list having 1000 data i need to add each 9 values with comma and quotes to table.Rows.Add(1, 2, "M", "M", "M", "M", "M", "M", "M") how can i do that? and my list staring index value is " " how can i remove ?(its not a null " " is not going when i remove).
I need to remove index 0 and take each 9 record and add like
table.Rows.Add(1, 2, "M", "M", "M", "M", "M", "M", "M")