views:

204

answers:

2

Just wondering what the main differences are between these libraries, how they differ in features and functionality.

Hoping for more information than I could find with a Google query...

+3  A: 

The main difference is when the AOP code is incorporated into your program

"Postsharp works by weaving at compile time"

Dynamic Proxy generates lightweight .NET proxies on the fly at runtime.

see: http://stackoverflow.com/questions/62798/applying-aop

Jon Schoning