vote up 2 vote down star

Please give me some insight on how to get the best start on applying Aspect Oriented Programming to my C#.net applications?

flag

3 Answers

vote up 4 vote down check

PostSharp has the added advantage that it does it's AOP by doing IL weaving. In fact it adds code to the Il when/or just after compiling. Which makes the builds slower but it should be faster at runtime.

Some other do this at runtime (the castle project and I think it's windsor in there that does the AOP) which is slower at runtime but faster to build.

link|flag
vote up 1 vote down

I recommend trying Spring.NET. It lets you create "Interceptor" classes that can be wrapped around calls into business objects simply by adding entries into the application's config file.

We've used it to do connection/transaction handling, error logging and authentication. Which keeps all of those "aspects" out of the business logic code.

link|flag
vote up 1 vote down

PostSharp is a fairly straightforward way of adding aspects to your C# code.

link|flag

Your Answer

Get an OpenID
or

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