Bagikan melalui


MemoryStream.WriteByte(Byte) Metode

Definisi

Menulis byte ke aliran saat ini pada posisi saat ini.

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)

Parameter

value
Byte

Byte untuk menulis.

Pengecualian

Aliran tidak mendukung penulisan. Untuk informasi tambahan lihat CanWrite.

-atau-

Posisi saat ini berada di akhir aliran, dan kapasitas tidak dapat dimodifikasi.

Aliran saat ini ditutup.

Contoh

Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk MemoryStream kelas .

// 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

Keterangan

Metode ini mengambil alih WriteByte.

Kecuali untuk yang MemoryStream dibangun dengan parameter byte[], operasi tulis di akhir MemoryStream perluas MemoryStream.

Berlaku untuk

Lihat juga