What is the CLR
Answer / kirti
CLR = Common Language Runtime. The CLR is a set of standard resources that (in theory) any .NET program can take advantage of, regardless of programming language. Robert Schmidt (Microsoft) lists the following CLR resources in his MSDN PDC# article:
Object-oriented programming model (inheritance, polymorphism, exception handling, garbage collection)
Security model
Type system
All .NET base classes
Many .NET framework classes
Development, debugging, and profiling tools
Execution and code management
IL-to-native translators and optimizers
What this means is that in the .NET world, different programming languages will be more equal in capability than they have ever been before, although clearly not all languages will support all CLR services.
| Is This Answer Correct ? | 0 Yes | 0 No |
Describe the gac in the .net framework.
Do you know about the new features in asp.net mvc 4 (asp.net mvc4)?
What is attribute routing in mvc?
What are the main components of .net framework?
Explain JSON Binding?
What are the levels at which filters can be applied in an asp.net mvc application?
What is Dependency Injection in ASP.Net MVC
What are Scaffold templates in ASP.Net MVC?
How can I tell what .net framework is installed?
Is it possible to combine asp.net webforms and asp.mvc and develop a single web application?
Can a view be shared across multiple controllers? If yes, how we can do that?
Can two application one using private assembly and other using Shared assembly be stated as a side-by-side executables?