What is a CLR class?

前端 未结 4 1628
攒了一身酷
攒了一身酷 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 12:56

    CLR refers to Common Language Runtime, while class refers to a strongly typed data instance. The CLR is responsible for amongst many other things, managing the memory of your class instances.

提交回复
热议问题