Globals.ScriptEngineBuildVersion Property
Assembly: Microsoft.VisualBasic (in microsoft.visualbasic.dll)
For more detailed information, see the Visual Basic topic ScriptEngineBuildVersion Property.
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.
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
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.