在开发和测试中,最常用的工具就是GACUtil.exe。在GAC中注册程序集跟COM注册差不多,但相对更容易: 1.把程序集添加到GAC中: GACUtil /i sample.dll (参数/i是安装的意思) 2.把程序集移出GAC GACUtil /u sample.dll (参数/u就移除的意思) 注意:不能将一个弱命名程序集安装到GAC中。 如果你试图把弱命名程序集加入到GAC中,会收到错误信息:” Failure adding assembly to the cache: Attempt to install an assembly without a strong name” d)强命名程序集的私有部署