Assemblies vs Class Libraries (.NET)

前端 未结 4 772
死守一世寂寞
死守一世寂寞 2021-01-05 15:35

Could anyone point out the advantage of using assemblies, in the \'context\' of ASP.NET.

As I understand it, assemblies run as executables, have a single entry point

4条回答
  •  太阳男子
    2021-01-05 15:54

    This question does not make a lot of sense. Assemblies contain class libraries, it is not an either or kind of thing. Even if you only have aspx files, the first time someone accesses a page, ASP.Net compiles it into a class and then an assembly on the fly.

提交回复
热议问题