create CSV file in c#net Window application [closed]
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this questioncreate CSV file in c#net Window application at button click event
You can use simple string or stringbuilder to construct CSV File. I can give pseudocode :
string csvString = "";
for each column in row
csvString += column.value + ","
writeToFile(csvString,filePath);
精彩评论