vote up 3 vote down star

Is it possible to add attributes at runtime or to change the value of an attribute at runtime?

flag

50% accept rate

9 Answers

vote up 1 vote down check

Attributes are static metadata. Assemblies, modules, types, members, parameters, and return values aren't first-class objects in C# (e.g., the System.Type class is merely a reflected representation of a type). You can get an instance of an attribute for a type and change the properties if they're writable but that won't affect the attribute as it is applied to the type.

link|flag
vote up 4 vote down

This really depends on what exactly you're trying to accomplish.

The System.ComponentModel.TypeDescriptor stuff can be used to add attributes to types, properties and object instances, and it has the limitation that you have to use it to retrieve those properties as well. If you're writing the code that consumes those attributes, and you can live within those limitations, then I'd definitely suggest it.

As far as I know, the PropertyGrid control and the visual studio design surface are the only things in the BCL that consume the TypeDescriptor stuff. In fact, that's how they do about half the things they really need to do.

link|flag
vote up 2 vote down

No, it's not.

Attributes are meta-data and stored in binary-form in the compiled assembly (that's also why you can only use simple types in them).

link|flag
vote up 1 vote down

I don't believe so. Even if I'm wrong, the best you can hope for is adding them to an entire Type, never an instance of a Type.

link|flag
TypeDescriptor.AddAttributes(Object, Attribute[]) adds class-level attributes to the target component instance. – Peter Wone Nov 10 '08 at 12:25
vote up 1 vote down

You can't. One workaround might be to generate a derived class at runtime and adding the attribute, although this is probably bit of an overkill.

link|flag
vote up 1 vote down

Well, just to be different, I found an article that references using Reflection.Emit to do so.

Here's the link: http://www.codeproject.com/KB/cs/dotnetattributes.aspx , you will also want to look into some of the comments at the bottom of the article, because possible approaches are discussed.

link|flag
Note that you can create attributes at runtime with the Reflection.Emit classes, BUT you can bind them to classes you have built with the Emit package and not to existing ones. – Panos Sep 24 '08 at 20:50
vote up 0 vote down

If you need something to be able to added dynamically, c# attributes aren't the way. Look into storing the data in xml. I recently did a project that i started w/ attributes, but eventually moved to serialization w/ xml.

link|flag
vote up 0 vote down

Why do you need to? Attributes give extra information for reflection, but if you externally know which properties you want you don't need them.

You could store meta data externally relatively easily in a database or resource file.

link|flag
vote up 0 vote down

In Java I used to work around this by using a map and implementing my own take on Key-Value coding.

http://developer.apple.com/documentation/Cocoa/Conceptual/KeyValueCoding/KeyValueCoding.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.