What exactly is an Assembly in C# or .NET?

前端 未结 9 1690
自闭症患者
自闭症患者 2020-11-28 02:43

Could you please explain what is an Assembly in C# or .NET?

  1. Where does it begin and where does it end?
  2. What important information should I know about
9条回答
  •  野性不改
    2020-11-28 03:07

    http://www.codeguru.com/columns/csharp_learning/article.php/c5845

    An assembly is a file that is automatically generated by the compiler upon successful compilation of every .NET application. It can be either a Dynamic Link Library or an executable file. It is generated only once for an application and upon each subsequent compilation the assembly gets updated.

提交回复
热议问题