C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
C# TextWriterC# 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. C# TextWriter ExampleLet'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 JavaTpoint");
}
Console.WriteLine("Data written successfully...");
}
}
}
Output: Data written successfully... f.txt: Hello C# C# File Handling by JavaTpoint
Next TopicC# TextReader
|