BinaryWriter.Write Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

Writes a value to the current stream.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List

  Name Description
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(Boolean) Writes a one-byte Boolean value to the current stream, with 0 representing false and 1 representing true.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(Byte) Writes an unsigned byte to the current stream and advances the stream position by one byte.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(array<Byte[]) Writes a byte array to the underlying stream.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(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.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(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.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(Double) Writes an eight-byte floating-point value to the current stream and advances the stream position by eight bytes.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(Int16) Writes a two-byte signed integer to the current stream and advances the stream position by two bytes.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(Int32) Writes a four-byte signed integer to the current stream and advances the stream position by four bytes.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(Int64) Writes an eight-byte unsigned integer to the current stream and advances the stream position by eight bytes.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(SByte) Writes a signed byte to the current stream and advances the stream position by one byte.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(Single) Writes a four-byte floating-point value to the current stream and advances the stream position by four bytes.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(String) Writes a length-prefixed string to this stream in the current encoding of the BinaryWriter, and advances the current position of the stream in accordance with the encoding used and the specific characters being written to the stream.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(UInt16) Writes a two-byte unsigned integer to the current stream and advances the stream position by two bytes.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(UInt32) Writes a four-byte unsigned integer to the current stream and advances the stream position by four bytes.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(UInt64) Writes an eight-byte unsigned integer to the current stream and advances the stream position by eight bytes.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(array<Byte[], Int32, Int32) Writes a region of a byte array to the current stream.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Write(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.

Top