Skip to content

Commit c13606c

Browse files
authored
FIX Misunderstanding about instantiating an abstract class. (#9508)
1 parent 60a5500 commit c13606c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System.IO/TextWriter.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<format type="text/markdown"><![CDATA[
102102
103103
## Remarks
104-
<xref:System.IO.TextWriter> is the abstract base class of <xref:System.IO.StreamWriter> and <xref:System.IO.StringWriter>, which write characters to streams and strings, respectively. Create an instance of <xref:System.IO.TextWriter> to write an object to a string, write strings to a file, or to serialize XML. You can also use an instance of <xref:System.IO.TextWriter> to write text to a custom backing store using the same APIs you would use for a string or a stream, or to add support for text formatting.
104+
<xref:System.IO.TextWriter> is the abstract base class of <xref:System.IO.StreamWriter> and <xref:System.IO.StringWriter>, which write characters to streams and strings, respectively. Use an instance of <xref:System.IO.TextWriter> to write an object to a string, write strings to a file, or to serialize XML. You can also use the instance of <xref:System.IO.TextWriter> to write text to a custom backing store using the same APIs you would use for a string or a stream, or to add support for text formatting.
105105
106106
All the `Write` methods of <xref:System.IO.TextWriter> having primitive data types as parameters write out the values as strings.
107107

0 commit comments

Comments
 (0)