Describe the two main components of the .NET framework ?
Answer Posted / raghumadhav tirunagari
The .NET Framework has two main components, the class
library and the common language runtime. The library
consists of classes that provide the objects you need for
developing Web applications. Classes also exist for
security, file input/output, and Windows applications. The
classes are organized in a hierarchical structure by
namespaces. Namespaces are logical in that classes belonging
to the same namespace can be split up into multiple files.
The Common language runtime (CLR) provides the services
needed for executing ASP.NET applicaitons. It doesn't matter
if a Web application was created in VB.NET or C# since the
CLR compiles all code to the same intermediate language
(IL). All forms in the same web application, however, must
be created in the same language.
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What are the new web part controls in asp.net 2.0 ?
Why asp.net mvc is better than asp.net? : Asp.Net MVC
What is server infrastructure & server components?
what is loosely coupled solution? How it can be used?
What is marshalling ? Is it a part of asp.net ?
What is viewstate? What does the “enableviewstate” property do?
What are the differences between application object and session object?
How can we inherit a static member?
What is session authentication?
Explain the difference between web user control and web custom control?
Explain MVC model binders?
Tell me the code snippet to show how we can return 404 errors from HttpError?
Explain the difference between codebehind="mycode.aspx.cs" and src="mycode.aspx.cs"?
What are the advantages of passport authentication?
What are the 3 levels at which content pages can be attached to Master Page?