I am working on C# on Win7 VS 2012.
I need to write text to a text file line by line by appending.
StreamWriter ofile = new StreamWriter(@"C:\myPath\my_data_output.txt", true);
ofile.WriteLine(myString + "\t");
But, there is nothing in the output file.
Any help would be appreciated.