BinaryWriter::Write Method (Boolean)

 

Writes a one-byte Boolean value to the current stream, with 0 representing false and 1 representing true.

Namespace:   System.IO
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual void Write(
	bool value
)

Parameters

value
Type: System::Boolean

The Boolean value to write (0 or 1).

Exception Condition
IOException

An I/O error occurs.

ObjectDisposedException

The stream is closed.

For a list of common I/O tasks, see Common I-O Tasks.

The following code example demonstrates how to store and retrieve application settings in a file.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: