Reputation: 24789
I have a custom attribute which I set in the AssemblyInfo.cs
. I want to update this custom attribute at runtime. Is this possible? And if so, how?
Upvotes: 0
Views: 181
Reputation: 754515
No. The metadata in an assembly is fixed and not mutatable at runtime.
Upvotes: 2