以编程方式设置程序集属性的值

时间:2014-03-09 13:35:34

标签: c# winforms assemblyinfo

我希望能够设置程序集'描述'属性

[assembly: AssemblyDescription("")]  - from AssemblyInfo.cs

我的程序的价值基于在运行时完成的一些交互。

我知道我可以通过以下方式阅读价值:

object[] attributes;
Assembly assembly = Assembly.GetExecutingAssembly();
attributes = assembly.GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false);
string description = ((AssemblyDescriptionAttribute)attributes[0]).Description;

我的问题是:有没有办法从我的表单中以编程方式设置值?

assembly.Attribute.Description = newvalue;

0 个答案:

没有答案