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
What are the difference bbetween value type & reference types ? Example from .net. Integer & struct are value types or reference types in .net?
Explain what relationship is between a process, application domain, and application?
What relationship is between a process, application domain, and application?
What is delegation in .net?
How to customize the trace output?
What tools is used to develop .NET applications?
What tags do you need to add within the asp:datagrid tags to bind columns manually.
How to load the contents of an xml file into an xmldocument object?
What are the new features in .net core?
How do you trigger the paint event in system.drawing?
What is loosely coupled solution in.net?
How many types of design patterns available in .NET?
What is the advantage of .net core?
What is a .net class?
What is an interface and what is an abstract class? Please, expand by examples of using both. Explain why?