What are the best/most popular ways to do aspect-oriented programming (AOP) in C#/.Net?
.net, aop, c#
Solution
- DynamicProxy from Castle is probably the most used tool for doing AOP on the CLR.
- Spring framework also offers AOP capabilities through its `Spring.Aop` namespace.
Problem
What are the best/most popular ways to do aspect-oriented programming (AOP) in C#/.Net?