-
-
-
-
-
What is "Common Language Runtime" (CLR)?
CLR is .NET equivalent of Java Virtual Machine (JVM). It is the runtime that converts a MSIL code into the host machine language code, which is then executed appropriately.The CLR is the execution engine for .NET Framework applications. It provides a number of services, including: • Code management (loading and execution) • Application memory isolation • Verification of...
-
What is the difference between ADO and ADO.NET?
ADO uses Recordsets and cursors to access and modify data. Because of its inherent design, Recordset can impact performance on the server side by tying up valuable resources. In addition, COM marshalling - an expensive data conversion process - is needed to transmit a Recordset.ADO.NET addresses three important needs that ADO doesn't address: 1. Providing a comprehensive disconnected data-access...
-
-
-
-
-
-
-
-
Difference between Windows Service and Web Service
What is the difference between a Windows Service Application and a Web Service Application? Please don't hand in the definition from some text book... I'm looking for the functional difference.
-
-
-
IP address
Write Code to get IP address of the Current Machine?
-
-
What is "Common Language Runtime" (CLR)?
CLR is .NET equivalent of Java Virtual Machine (JVM). It is the runtime that converts a MSIL code into the host machine language code, which is then executed appropriately. The CLR is the execution engine for .NET Framework applications. It provides a number of services, including: · Code management (loading and execution) · ...
-
What are the Types of Assemblies?
Assemblies are of two types 1. Private Assemblies 2. Shared AssembliesPrivate Assemblies: The assembly is intended only for one application. The files of that assembly must be placed in the same folder as the application or in a sub folder. No other application will be able to make a call to this assembly. The advantage of having a private assembly is that, it makes naming the assembly very...
DotNet Interview Questions
Ans