Gammtek.Conduit.IO.BitStream.Write C# (CSharp) Method

Write() public abstract method

Writes a bit to the stream.
public abstract Write ( bool value ) : void
value bool
return void
		public abstract void Write(bool value);

Usage Example

 /// <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);
 }