BinaryStream.WriteUInt64

From Xojo Documentation

Method

BinaryStream.WriteUInt64(value as UInt64)

New in 2005r5

Supported for all project types and targets.

Writes the passed UInt64 to the stream.

Sample Code

Var i As UInt64 = 427
Var writeStream As BinaryStream
writeStream.WriteUInt64(i)