GetVersion
Returns the SemVersion of the current Streamer.bot installation
Signature
public string GetVersion()
Parameters
No parameters.
Return Type
string
Example
using System;
public class CPHInline
{
public bool Execute()
{
//Get version string in SemVersion format (0.2.6)
string sbVersion = CPH.GetVersion(); //Write to log
CPH.LogInfo(sbVersion);
return true;
}
}