Need assistant :) Trying to create a csv/txt file I need some of the text to have " before and after the text How can i do that, i have tried several things with no luck
This is my code
using (StreamWriter writer = new StreamWriter(@"c:\temp\testfile.txt"))
// Using Name and Phone as example columns.
writer.WriteLine("number,surname");
I have a database where i get data with format like the picture
I need to create a csv file with that data, with header and data
It is about 20000 rows
And data under them with same format
Cheers