The key organizational concepts in C# are programs, namespaces, types, members, and assemblies. 谁能告诉我这句话中assemblies指的是C#中的什么啊。后面有这样一句话Assemblies typically have the file extension .exe or .dll, depending on whether they implement applications or libraries.我猜assemblies应该是与C#编译后有关,但平时接触的少真心不知道assemblies指的是什么。

解决方案 »

  1.   

    assemblies  程序集,项目引用里面要添加一个.dll文件
      

  2.   

    assemblies 一个程序集名称的集合
      

  3.   

    The key organizational concepts in C# are programs, namespaces, types, members, and assemblies.
    c#中组织项目的元素有如下概念,源码,命名空间,类型,成员,程序集
    Assemblies typically have the file extension .exe or .dll, depending on whether they implement applications or libraries.
    典型的程序集具有 .exe 或 .dll这样的文件后缀名,至于后缀是dll还是exe则要看该程序集是应用程序还是类库
      

  4.   

    程序集.
    程序集通常有.exe或者.dll后缀,这个由他们是应用程序还是类库决定.