MemoryStream.WriteByte(Byte) メソッド

定義

現在のストリーム内の現在位置に 1 バイトを書き込みます。

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)

パラメーター

value
Byte

書き込むバイト。

例外

ストリームは書き込みをサポートしません。 詳細については、CanWrite のトピックを参照してください。

- または -

現在の位置がストリームの末尾になっており、容量を変更できません。

現在のストリームが閉じられます。

このコード例は、MemoryStream クラスのために提供されている大規模な例の一部です。

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

注釈

このメソッドは、WriteByte をオーバーライドします。

MemoryStream byte[] パラメーターを使用して構築された を除き、 の末尾に書き込み操作をMemoryStream行うと、 が展開されますMemoryStream

適用対象

こちらもご覧ください