Write() 공개 추상적인 메소드

Writes a bit to the stream.
public abstract Write ( bool value ) : void
value bool
리턴 void
예제 #1
0
 /// <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);
 }