ScriptEngineBuildVersion Property
Returns an Integer containing the build version number of the runtime currently in use.
ReadOnly Public Property ScriptEngineBuildVersion As Integer
Remarks
The returned value corresponds directly to the version information contained in the DLL for the current runtime.
You can use ScriptEngineBuildVersion when your application is running as a standalone program, in a script, or in a host application.
Example
The following example uses the ScriptEngineBuildVersion property and related properties to return a string describing the current run-time information:
Function getRuntimeInfo() As String
Dim runtime As String = ScriptEngine & " Version "
runtime &= CStr(ScriptEngineMajorVersion) & "."
runtime &= CStr(ScriptEngineMinorVersion) & "."
runtime &= CStr(ScriptEngineBuildVersion)
' Return the current runtime information.
Return runtime
End Function
Smart Device Developer Notes
This property is not supported.
Requirements
Namespace: Microsoft.VisualBasic
Module: Globals
Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll)
Because ScriptEngineBuildVersion is a member of a module, rather than of a class, you do not need to create an object on which to access ScriptEngineBuildVersion.
See Also
Reference
ScriptEngine Property
ScriptEngineMajorVersion Property
ScriptEngineMinorVersion Property