TextWriter creates text output. This C# class is used to implement other file classes in the base class library. You can also use it to implement file IO logic.
Used by StreamWriter. TextWriter is used to implement StreamWriter. It lacks helpful features, but is still useful when we want to use a specific text encoding.
Example. First here we look at the TextWriter class, which we instantiate from the result of the File.CreateText static method in the System.IO namespace.
using System.IO;
class Program
{
static void Main()
{
//// Create a new TextWriter in the resource acquisition statement.//
using (TextWriter writer = File.CreateText("C:\\perl.txt"))
{
//// Write one line.//
writer.WriteLine("First line");
//// Write two strings.//
writer.Write("A ");
writer.Write("B ");
//// Write the default newline.//
writer.Write(writer.NewLine);
}
}
}First line
A B
StreamWriter. The StreamWriter class inherits from TextWriter. The TextWriter class is an abstract base class, which means it provides functionality for StreamWriter.
Note Microsoft states that StreamWriter represents writing in a particular encoding.
And For this reason, unless you have specialized encoding requirements, StreamWriter is more appropriate because it manages the encoding.
Summary. We looked at the TextWriter class and related it to the StreamWriter class by noting that it is used as a base class. TextWriter does not handle encodings automatically.
Dot Net Perls is a collection of pages with code examples, which are updated to stay current. Programming is an art, and it can be learned from examples.
Donate to this site to help offset the costs of running the server. Sites like this will cease to exist if there is no financial support for them.
Sam Allen is passionate about computer languages, and he maintains 100% of the material available on this website. He hopes it makes the world a nicer place.
This page was last updated on Nov 15, 2023 (edit).