what is dotnet architecture? can anyone explain that.
Answer Posted / vijay
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 ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is garbage collection and how it works. Provide a code example of how you can enforce garbage collection in .net?
What does mean by .net framework?
How ccw (com callable wrapper) and rcw (runtime callable wrappers) works?
Explain me what is .net web service?
What is typical about a windows process in regards to memory allocation in .net?
what is the keyword used for self reference?
Explain me why do we use msmq?
Explain re-clarification of object based in .net?
Explain the difference between static page and dynamic page?
If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
Explain why do we use the “using” statement?
Which namespace does it belong to by default?
Will my .net app run on 64-bit windows?
What does msil do?
What are two different types of remote object creation mode in .net?