.NET framework and its building blocks
What is Microsoft .NET .NET is a collections of API and library of shared code which is accessible to developers to create new applications. Key benefits of .NET - Interoperability with existing code. - Support for numerous programming language. - Common runtime engine shared across all .NET aware languages. - Language integration. - Comprehensive base class library .Net Framework provides runtime environment called Common Language Runtime (CLR).It provides an environment to run all the .Net Programs. The code which runs under the CLR is called as Managed Code . Programmers need not to worry on managing the memory if the programs are running under the CLR as it provides me...