Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

c#

.net

aop

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

like image 766
MindModel Avatar asked Dec 17 '22 10:12

MindModel


1 Answers

  • 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.
like image 173
Romain Verdier Avatar answered Dec 24 '22 01:12

Romain Verdier