What is .net frame work?

The .NET Framework has two main components: the common language runtime and the .NET Framework class library.
You can think of the runtime as an agent that manages code at execution time, providing core services such as memory management, thread management, and remoting, while also enforcing strict type safety and other forms of code accuracy that ensure security and robustness.
The class library, is a comprehensive, object-oriented collection of reusable types that you can use to develop applications ranging from traditional command-line or graphical user interface (GUI) applications to applications based on the latest innovations provided by ASP.NET, such as Web Forms and XML Web services.

Showing Answers 1 - 4 of 4 Answers

samiksc

  • Jan 11th, 2006
 

.Net framework is an environment provided on top of the OS which looks into

  1. Memory management
  2. Thread management

and provides

  1. Language independence
  2. Platform independence

It is defined by Microsoft as 'an environment for building, deploying and running web services and other applications. It consists of three main parts -- CLR, framework classes and ASP.Net'

.Net facilitates integration of code written for desktop applications with code written for web applications. It also facilitates creation of assemblies from code files written in different .net languages. It provides a common type system (CTS) for bringing data types of all languages on a common platform.

  Was this answer useful?  Yes

sathin

  • Aug 25th, 2009
 

.NET framework consists of
1) CLR
2) Class library
3) ASP.Net


CLR (Common Language Runtime): The name itself gives you an idea what CLR is.

RUNTIME can be described as a reduced version of a program.  It enables you
to Execute the program but not develop it.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions