I have the following which works fine:

    StreamWriter outputFile = new StreamWriter(@"C:\out.txt");

    string header =  "ProgramDate" +  "," +
                     "ProgTime";

    outputFile.WriteLine(header);

    outputFile.Close();

instead of the comma delimited, how do I make it tab delimited. Or how do I make it tab delimited to begin with? I searched online but could not find an answer to this.

link|improve this question

69% accept rate
8  
Replace the "," with "\t" as this is the character code for tab. Plenty of examples on SO - see stackoverflow.com/questions/366124/… – dash Dec 6 '11 at 21:28
feedback

2 Answers

up vote 3 down vote accepted

Just substitute the delimiter character you want.

StreamWriter outputFile = new StreamWriter(@"C:\out.txt");

string header =  "ProgramDate" +  "\t" +
                 "ProgTime";

outputFile.WriteLine(header);

outputFile.Close();
link|improve this answer
feedback

Also, not sure if this would be an option you would consider looking into but, no need to reinvent the wheel, here's an open source CSV library.

If you just writing this for learning purposes or want to skip and licencing go with Dash or Beaner's info.

http://www.filehelpers.com/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.