C# – What are the best/most popular ways to do aspect-oriented programming (AOP) in C#/.Net

aopcnet

What are the best/most popular ways to do aspect-oriented programming (AOP) in C#/.Net?

Best Answer

  • 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.