Hi,
I have a list of integers and I want to be able to convert this to a string where each number is separated by a comma.
So far example if my list was:
1
2
3
4
5
My expected output would be:
1, 2, 3, 4, 5
Is this possible using LINQ?
Thanks