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.