Returns an integer containing the minor version number of the runtime currently in use.
ReadOnly Public Property ScriptEngineMinorVersion As Integer
The returned value corresponds directly to the version information contained in the DLL for the current runtime.
You can use ScriptEngineMinorVersion when your application is running as a standalone program, in a script, or in a host application.
The following example uses the ScriptEngineMinorVersion property and related properties to return a string describing the current run-time information:
Function GetRuntimeInfo() As String
Dim Runtime As String = ""
Runtime = ScriptEngine & " Version "
Runtime = Runtime & CStr(ScriptEngineMajorVersion) & "."
Runtime = Runtime & CStr(ScriptEngineMinorVersion
) & "."
Runtime = Runtime & CStr(ScriptEngineBuildVersion)
Return Runtime ' Return the current run-time information.
End Function
ScriptEngine Property | ScriptEngineBuildVersion Property | ScriptEngineMajorVersion Property