BinaryStream.WriteDouble

From Xojo Documentation

Method

BinaryStream.WriteDouble(Value as Double)

Supported for all project types and targets.

Writes the value passed as a double word to the stream.

Sample Code

Var d As Double = 3.1416
Var writeStream As BinaryStream
writeStream.WriteDouble(d)