Go
Go
Get Version of Chilkat
Demonstrate how to find out the version of Chilkat at runtime.Chilkat Go Downloads
// Most Chilkat classes include a Version property.
// To find the version of Chilkat, such as "9.5.0.94",
// instantiate the object and examine the Version property.
// For example:
sftp := chilkat.NewSFtp()
chilkatVersion := sftp.Version()
fmt.Println(chilkatVersion)
// Most other Chilkat classes also have the Version property
// For example:
json := chilkat.NewJsonObject()
fmt.Println(json.Version())
sftp.DisposeSFtp()
json.DisposeJsonObject()