MemoryStream.WriteByte(Byte) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Écrit un octet à la position actuelle dans le flux actuel.
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)
Paramètres
- value
- Byte
Octet à écrire.
Exceptions
Le flux ne prend pas en charge l'écriture. Pour plus d’informations, consultez CanWrite.
- ou -
La position actuelle est à la fin du flux et la capacité ne peut pas être modifiée.
Le flux actuel est fermé.
Exemples
Cet exemple de code fait partie d’un exemple plus grand fourni pour la MemoryStream classe .
// 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
Remarques
Cette méthode se substitue à WriteByte.
À l’exception d’un MemoryStream
construit avec un paramètre byte[], les opérations d’écriture à la fin d’un MemoryStream
développez le MemoryStream
.