Write() public abstract method

Writes a bit to the stream.
public abstract Write ( bool value ) : void
value bool
return void
 /// <summary>
 ///     Writes a one-bit Boolean value to the current stream, with 0 representing false and 1 representing true.
 /// </summary>
 public override void Write(bool value)
 {
     _stream.Write(value);
 }