BinaryStream.WriteInt8

From Xojo Documentation

Method

BinaryStream.WriteInt8(Value as Int8)

New in 2005r5

Supported for all project types and targets.

Writes the passed Int8 to the stream.

Sample Code

Var i As Int8 = 8
Var writeStream As BinaryStream
writeStream.WriteInt8(i)