What is a CLR class?

前端 未结 4 1627
攒了一身酷
攒了一身酷 2021-02-02 12:31

I googled CLR and found out what it is from wikipedia, but I wanted to know what a CLR class or more specifically a CLR entity type is (especially in ASP.NET).

4条回答
  •  鱼传尺愫
    2021-02-02 13:11

    CLR is not class. The Common Language Runtime (CLR) is the virtual machine component of Microsoft's .NET framework . This runtime environment in .NET Framework is known as Common Language Runtime (CLR).

    image from wiki which explain what clr can do

    enter image description here

    CLR provides the following benefits for developers:

    • Vastly simplified development.
    • Seamless integration of code written in various languages.
    • Evidence-based security with code identity.
    • Assembly-based deployment that eliminates DLL Hell.
    • Side-by-side versioning of reusable components.
    • Code reuse through implementation inheritance.
    • Automatic object lifetime management.
    • Code access security.
    • Cross Language Integration.
    • Self describing objects.

    Read more : http://www.codeguru.com/forum/showthread.php?t=369619

提交回复
热议问题