BinaryStream.WriteInt64

From Xojo Documentation

Method

BinaryStream.WriteInt64(Value as Int64)

New in 2005r5

Supported for all project types and targets.

Writes the passed Int64 to the stream.

Sample Code

Var i As Int64 = 5434555
Var writeStream As BinaryStream
writeStream.WriteInt64(i)