本文介绍了什么是.NET程序集的概念?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是新来的.NET时遇到麻烦了解了大会的概念 - 什么是大会?当他们说什么人的意思是复制组装......? AssemblyInfo.cs中的目的是什么?
解决方案
部署的物理单元。
大多数组件是的XCopy部署 - 这意味着你可以提交它们复制到他们的目的地
它集汇编级元数据。事情是版本号,版权声明,COM互操作规则,等等。
I'm new to .NET and am having trouble understanding the concept of an Assembly - what is an Assembly? What do people mean when they say 'copy the assembly...'? What is the purpose of AssemblyInfo.cs?
解决方案
A physical unit of deployment.
Most assemblies are XCopy deployable - meaning you can just file copy them to their destination.
It sets Assembly level metadata. Things like version number, copyright notices, COM interop rules, etc.
这篇关于什么是.NET程序集的概念?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!