C# TextWriter class is an abstract class. It is used to write text or sequential series of characters into file. It is found in System.IO namespace.
Let's see the simple example of TextWriter class to write two lines data.
using System; using System.IO; namespace TextWriterExample { class Program { static void Main(string[] args) { using (TextWriter writer = File.CreateText("e:\\f.txt")) { writer.WriteLine("Hello C#"); writer.WriteLine("C# File Handling by rookienerd"); } Console.WriteLine("Data written successfully..."); } } }
Hello C# C# File Handling by rookienerd