TextWriter.Write Method (Char[])
.NET Framework 3.0
Writes a character array to the text stream.
Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
| Exception type | Condition |
|---|---|
| The TextWriter is closed. | |
| An I/O error occurs. |
This method does not search the specified String for individual newline characters (hexadecimal 0x000a) and replace them with NewLine.
This default method calls Write and passes the entire character array. If the character array is a null reference (Nothing in Visual Basic), nothing is written.
For a list of common I/O tasks, see Common I/O Tasks.
This code example is part of a larger example provided for the TextWriter class.
void WriteText( TextWriter^ textWriter ) { textWriter->Write( "Invalid file path characters are: " ); textWriter->Write( Path::InvalidPathChars ); textWriter->Write( Char::Parse( "." ) ); }
static void WriteText(TextWriter textWriter)
{
textWriter.Write("Invalid file path characters are: ");
textWriter.Write(Path.InvalidPathChars);
textWriter.Write('.');
} //WriteText
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: