Explain the .NET architecture.
Answer Posted / pramod rai
Architecture of .Net is based on CLR. CLR is the Common
Language Runtime which runs as virtual machine on Operating
System. CLR manages execution of code right from memory
allocation to Garbage collection. CLR consists of CLS and
CTS. Every program that is written in .NET runs on CLR. We
can write code on different languages which should be
compliant with CLS. Languages like C#.net,VB.net,J#.net are
supported by CLR. All code written in such language is
knwon as Managed Code. With the help of such language,
different types application like, Console Based, Web based
and windows based can be written. Also it can uses ADO.NET
for backend connectivity.
| Is This Answer Correct ? | 9 Yes | 6 No |
Post New Answer View All Answers
Do I have any control over the garbage collection algorithm?
What is namespaces in .net?
What does .net stand for?
What makes .net core cross platform?
Explain about .NET services?
Please tell us what is the difference between override and overload in a method?
What versions of .net are there?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it.
What is the use of immutability?
What is common language specification (cls)?
What is loosely coupled solution in.net?
What is clr in .net?
What is assembly in .net?
How does cas works?
Difference abstract class and interface in .net?