Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
using System.IO; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { using (StreamWriter writer = new StreamWriter("textfile.txt", false)) { writer.WriteLine("The text in my text file"); } } } }