/ Published in: C#
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
string result = string.Empty; foreach (int number in listOfInts) { if (number == listOfInts.Last()) { result += number; } else { result += string.format("{0},", number); } }