MemoryStream.WriteByte(Byte) Yöntem

Tanım

Geçerli akışa geçerli konumda bir bayt yazar.

public:
 override void WriteByte(System::Byte value);
public override void WriteByte (byte value);
override this.WriteByte : byte -> unit
Public Overrides Sub WriteByte (value As Byte)

Parametreler

value
Byte

Yazacak bayt.

Özel durumlar

Akış yazmayı desteklemiyor. Daha fazla bilgi için bkz CanWrite. .

-veya-

Geçerli konum akışın sonundadır ve kapasite değiştirilemez.

Geçerli akış kapatıldı.

Örnekler

Bu kod örneği, sınıfı için MemoryStream sağlanan daha büyük bir örneğin parçasıdır.

// Write the second string to the stream, byte by byte.
count = 0;
while ( count < secondString->Length )
{
   memStream->WriteByte( secondString[ count++ ] );
}
// Write the second string to the stream, byte by byte.
count = 0;
while(count < secondString.Length)
{
    memStream.WriteByte(secondString[count++]);
}
' Write the second string to the stream, byte by byte.
count = 0
While(count < secondString.Length)
    memStream.WriteByte(secondString(count))
    count += 1
End While

Açıklamalar

Bu yöntem geçersiz kılar WriteByte.

byte[] parametresiyle yapılan bir MemoryStream dışında, yazma işlemlerinin MemoryStream sonunda öğesini MemoryStreamgenişletin.

Şunlara uygulanır

Ayrıca bkz.