MemoryStream.WriteByte Method (Byte)

 

Writes a byte to the current stream at the current position.

Namespace:   System.IO
Assembly:  mscorlib (in mscorlib.dll)

Public Overrides Sub WriteByte (
	value As Byte
)

Parameters

value
Type: System.Byte

The byte to write.

Exception Condition
NotSupportedException

The stream does not support writing. For additional information see CanWrite.

-or-

The current position is at the end of the stream, and the capacity cannot be modified.

ObjectDisposedException

The current stream is closed.

This method overrides WriteByte.

Except for a MemoryStream constructed with a byte[] parameter, write operations at the end of a MemoryStream expand the MemoryStream.

This code example is part of a larger example provided for the MemoryStream class.

' Write the second string to the stream, byte by byte.
count = 0
While(count < secondString.Length)
    memStream.WriteByte(secondString(count))
    count += 1
End While

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: