CorLib  

TextWriter

TextWriter overview

Public:

Properties:
Encoding (get) Returns the encoding being used by this reader instance.  
FormatProvider (get) Returns the format provider used by this read instance.  
NewLine (get) Returns the NewLine character used by this reader.  
NewLine (let) Sets the NewLine character used by this writer.  
Methods:
CloseWriter Closes this writer instance.  
Equals Returns if the value is equal to this instance of TextWriter  
Flush Forces any data being cached to be written to the stream immediately.  
GetHashCode Returns a pseudo-unique number that identifies this object instance.  
ToString Returns a string representation of this instance.  
WriteChars Writes the string representation of the characters to the stream using both the format provider and encoding objects.  
WriteLine Writes the string representation of the value followed by a NewLine to the stream using both the format provider and encoding objects.  
WriteLineChars Writes the string representation of the characters followed by a NewLine to the stream using both the format provider and encoding objects.  
WriteValue Writes the string representation of the value to the stream using both the format provider and encoding objects.  

See Also