what is dotnet architecture? can anyone explain that.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / Amber Goel
The .NET architecture is a software framework developed by Microsoft. It provides a common runtime environment (CLR), class libraries, and tools to build, deploy, and run applications on various platforms (Windows, Linux, macOS). The core components of the .NET architecture include:n- Common Language Runtime (CLR): Provides services like memory management, security, interoperability, and exception handling.n- Framework Class Library (FCL): A collection of predefined classes and namespaces to perform common programming tasks.n- Just In Time Compiler: Converts high-level managed code into native machine code at runtime.
| Is This Answer Correct ? | 0 Yes | 0 No |
Can you edit data in repeater control? How?
What is namespace in .net?
Usually in .net, the clr takes care of memory management. Is there any need for a programmer to explicitly release memory and resources? If yes, why and how?
What is the need of OLE-automation?
Explain the difference between static page and dynamic page?
How does the generational garbage collector in the .net clr manage object lifetime? What is non-deterministic finalization?
Please explain what is immutability, what is it for and how is it codified?
What are three common acronyms used in .net, and what do they stand for?
What are HTML controls, Web controls, and server controls?
What is Assembly manifest? what all details the assembly manifest will contain.
What do you mean by Code Access Security in .NET?
Which file is taken by compiler when we have both file Application and Server Configuration file?