Overload List

  NameDescription
Public methodWrite(Boolean)
Writes a one-byte Boolean value to the current stream, with 0 representing false and 1 representing true.
(Inherited from BinaryWriter.)
Public methodWrite(Byte)
Writes an unsigned byte to the current stream and advances the stream position by one byte.
(Inherited from BinaryWriter.)
Public methodWrite(SByte)
Writes a signed byte to the current stream and advances the stream position by one byte.
(Inherited from BinaryWriter.)
Public methodWrite(array<Byte>[]()[][])
Writes a byte array to the underlying stream.
(Inherited from BinaryWriter.)
Public methodWrite(Char)
Writes a Unicode character to the current stream and advances the current position of the stream in accordance with the Encoding used and the specific characters being written to the stream.
(Inherited from BinaryWriter.)
Public methodWrite(array<Char>[]()[][])
Writes a character array to the current stream and advances the current position of the stream in accordance with the Encoding used and the specific characters being written to the stream.
(Inherited from BinaryWriter.)
Public methodWrite(Decimal)
Writes a decimal value to the current stream and advances the stream position by sixteen bytes.
(Inherited from BinaryWriter.)
Public methodWrite(Double)
Converts a Double value to its bits and writes an Int64 instance which stores the bits.
(Overrides BinaryWriter..::..Write(Double).)
Public methodWrite(Int16)
Writes a two-byte signed integer to the current stream and advances the stream position by two bytes.
(Overrides BinaryWriter..::..Write(Int16).)
Public methodWrite(Int32)
Writes a four-byte signed integer to the current stream and advances the stream position by four bytes.
(Overrides BinaryWriter..::..Write(Int32).)
Public methodWrite(Int64)
Writes a eight-byte signed integer to the current stream and advances the stream position by eight bytes.
(Overrides BinaryWriter..::..Write(Int64).)
Public methodWrite(Single)
Converts a Single value to its bits and writes an Int32 instance which stores the bits.
(Overrides BinaryWriter..::..Write(Single).)
Public methodWrite(String)
Writes string to the stream prefixed by its length in "packed" format.
(Overrides BinaryWriter..::..Write(String).)
Public methodWrite(UInt16)
Writes a two-byte unsigned integer to the current stream and advances the stream position by two bytes.
(Overrides BinaryWriter..::..Write(UInt16).)
Public methodWrite(UInt32)
Writes a four-byte unsigned integer to the current stream and advances the stream position by four bytes.
(Overrides BinaryWriter..::..Write(UInt32).)
Public methodWrite(UInt64)
Writes a eight-byte unsigned integer to the current stream and advances the stream position by eight bytes.
(Overrides BinaryWriter..::..Write(UInt64).)
Public methodWrite(array<Byte>[]()[][], Int32, Int32)
Writes a region of a byte array to the current stream.
(Inherited from BinaryWriter.)
Public methodWrite(array<Char>[]()[][], Int32, Int32)
Writes a section of a character array to the current stream, and advances the current position of the stream in accordance with the Encoding used and perhaps the specific characters being written to the stream.
(Inherited from BinaryWriter.)

See Also