/ Published in: C#
Expand |
Embed | Plain Text
private static void writeToFile(String s) { StreamWriter SW; SW = File.AppendText("mdxQuery.txt"); SW.WriteLine("\n\n-------------------------"); SW.WriteLine(s); SW.WriteLine("-------------------------"); SW.Close(); }
You need to login to post a comment.
