BinaryStream.WriteUInt8

From Xojo Documentation

Method

BinaryStream.WriteUInt8(value as UInt8)

New in 2005r5

Supported for all project types and targets.

Writes the passed UInt8 to the stream.

Sample Code

Var i As UInt8 = 4
Var writeStream As BinaryStream
writeStream.WriteUInt8(i)