answersLogoWhite

0

What else can I help you with?

Related Questions

What is the .NET framework used for?

The .Net framework serves as the runtime for applications that were built to target the Common Language Runtime.


Which binding virtual function used?

Virtual functions are dynamically bound at runtime.


What is net framework?

.net is framework is a runtime environment for running .net projects..


Is using AssemblyLoad a static reference or dynamic reference?

Dynamic references are constructed on the fly as a result of calling various methods, such as System.Reflection.Assembly.Load. Source: .NET Framework Developer's Guide How the Runtime Locates Assemblies


What is loading of modules dynamically in monolithic kernel?

The loading of modules dynamically in monolithic kernel is done at the binary level as opposed to the architectural level. Dynamically loading modules is a more flexible way of handling the operating system image at runtime - as opposed to rebooting with a different operating system image.


If you make a exe in vbnet can you run it on a system not having net framework like vb6 programs?

No, any program targeting the .Net runtime will require that version of the runtime that it was compiled against. Note that having the 3.0 runtime does not mean an application with the 1.1 runtime will work; it must be the same runtime compiled.


Unable to find a version of the runtime to run application?

check version in C:\WINDOWS\Microsoft.NET\Framework


Is installing dot net framework similar like vbnet?

The .Net Framework is simply a runtime library that makes applications written for .Net able to run. VB.Net is a Common Language Runtime-targeted programming language that uses the .Net Framework. The similarity in installation is like any other application offered from Microsoft: double-click the .MSI file.


Parser Error Message Unrecognized configuration section 'connectionStrings' when you use Dot net framework v2.05 but in runtime it show framework v1.14322 why?

You may need to restart IIS...


Managed code in relation to net framework?

Managed code basically means that code is being executed in a virtual environment. Code written on the .NET framework is managed by the Common Language Runtime.


What is Reflection in C-sharp?

Reflection is a process, which enables us to get information metadata about object in runtime. That information contains data of the class. Also it can get the names of the methods that are inside the class and constructors of that objec


What does CLR mean?

CLR stands for Common Language Runtime. It is a component of the .NET framework that provides a runtime environment for executing managed code. It manages memory, enforces type safety, and provides various services for running and managing .NET applications.