vote up 3 vote down star
1

Hi,

I would like to ask users of the AOP framework Postsharp, what specifically are you using the framework for?

Also, I know it's use has a big negative impact on build times, but how about runtime performace? Is there much of a hit?

Thanks,

S

flag

72% accept rate
Seems to me like this is a dupe of stackoverflow.com/questions/879863/… – Ngu Soon Hui Sep 23 at 12:05
@Ngu Similar - but I want to ask it from a .net perspective (which postsharp is) - some of the uses in other languages (e.g. for observer in Java) are not relevant for .net – Sosh Sep 23 at 12:18

4 Answers

vote up 1 vote down

I use it to remove the property name smell from INotifyPropertyChanged methods, and it hasn't hugely affected runtime performance.

link|flag
Can you provide an example please ? – Melursus Sep 23 at 12:01
postsharp.org/blog/… gives you an idea of what I'm talking about. – Pete OHanlon Sep 23 at 12:45
vote up 1 vote down

I use the compile time weaving to add extra functionality to some methods that have been decorated with a certain attribute.

Like here.

link|flag
vote up 0 vote down

We use it to inject our own aspects (persistent property accessors, construction notifiers, session & transaction activators, etc.) in DataObjects.Net.

link|flag
vote up 0 vote down

In short, it makes development faster, code more maintainable and easier to understand. There doesn't have to be a performance hit when you are willing to put in the effort.

link|flag

Your Answer

Get an OpenID
or

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