New at C# using visual studio 2010 and trying to get output in a text file from an excel sheet. The excel sheet contains only one column with numeric values like this:
ColumnA
-------
222
333
444
555
666
777
888
999
877
566
767
678
767
I am trying to get the output in the text file like this:
222, 333, 444,
555, 666, 777,
888, 999, 877,
566, 767, 678,
767
Thanks in advance.