I have a loop in my app. Code is following :-
foreach (DataRow dr in dt.Rows)
ColorNames +=dr["ColorName"].ToString() + "\n";
But i don't want to add \n at the last Datarow. Any suggestion how to do it?
|
|
Foreach do not work on index. Option 1: ForEach Loop Use foreach loop. Loop till last and outside loop do like
Option 2: For Loop Use for loop and check for index inside loop for all indexes till last. add \n and in last index do not add \n
OR
Option 3: LINQ
|
|||||||||
|
Here is updated version (forgot that cast to Enumerable needed):
|
|||||||||||
|
|
||||
|
|
|
|||
|
|