Hi.
I am trying to find the most fasted way of doing this when it comes to reflection.

Say I have a custom attribute which allows multiples on a property.

I then want to get a list of properties which contains this custom attribute. Thats ok, I get a collection of these attributes for that property.
I then, for each of the attributes found, want to get the value for a specific named argument.

how can I do this and in the most efficient way? Reflection does have a hit but im sure with some decent algorithms/different calls it can save those few ms's

thanks