What is a VB Runtime?

What is a VB runtime? How is this related to VB.NET?

Datte

+3
source share
3 answers

The VB runtime is a separate library containing various functions for use in your VB applications. This runtime can be installed (copied) into the Windows directory, where it can be used by every VB application written in the same version (VB5 runtime is not compatible with VB6 runtime).

This allowed the compiled VB applications to be very small, because in this mode large chunks of common code were created.

.NET , , . .NET , .NET.

, API Windows Win32/Win64.; -)

+5

, Visual Basic Runtime Visual Basic.NET, Visual Basic.

:

+1

@GolezTrol:

VB6 Runtime Visual Basic .Net Framework ( Microsoft.VisualBasic).

http://msdn.microsoft.com/en-us/library/c157t28f(v=VS.100).aspx

Visual Basic.NET allows you to code using the outdated syntax and keywords of VB 6. For example, we can use CInt, Mid, InStr, etc. Implementation compatibility level Microsoft.VisualBasic.dll library. [ http://www.codeproject.com/KB/vb/novbruntimeref.aspx ]

It is automatically added as a link in all VB.Net projects, and you can add it manually in C # projects (and others).

+1
source

All Articles