Type Summary
public abstract class TextWriter : MarshalByRefObject, IDisposable { // Constructors protected TextWriter (); protected TextWriter (IFormatProvider formatProvider); // Fields MS protected char[] CoreNewLine = new char [] {'\n'}; public static readonly TextWriter Null; // Properties public abstract Encoding Encoding { get; } public virtual IFormatProvider FormatProvider { get; } public virtual string NewLine { set; get; } // Methods public virtual void Close (); protected virtual void Dispose (bool disposing); public virtual void Flush (); public static TextWriter Synchronized (TextWriter writer); public virtual void Write (bool value); public virtual void Write (char value); public virtual void Write (char[] buffer); public virtual ...
Get .NET Framework Standard Library Annotated Reference, Volume 1: Base Class Library and Extended Numerics Library now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.