vote up 1 vote down star
2

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

flag

43% accept rate

4 Answers

vote up 3 vote down
  • 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.
link|flag
+1 For DynamicProxy -1 Spring because of the horrid XML! – Chris Canal Sep 25 '08 at 16:27
vote up 2 vote down

Postsharp is another well-known one: "Bringing AOP to .NET!" I only have very little experience with it, but it looks nice and worth having a look at it.

link|flag
vote up 1 vote down

PostSharp is good. I have been using it for about a year now. It's easy to install and has a fairly shallow learning curve considering the almost godlike power it enables. Additionally, there seem to be both an active community of developers and a responsive developer.

Check out the code samples on the PostSharp home page. Those are good examples of simper aspects done with PostSharp.

link|flag
vote up 0 vote down

I've played around with rolling my own, for several different types of things. I've had some luck. In general, I make an interface, implement it with a class, and then make a proxy which implements the interface, does whatever precondition steps I want, calls the real object's method, and then does whatever postcondition steps I want. One of the main annoyances of mine with this approach is that you can't have constructors in an interface, and you also can't have static methods in an interface, so there's no real obvious place to put that type of code. The hard part is the code generation - because you're either going to emit IL, or you're going to emit C# that you have to compile. But that's just been my approach. And it forced me to think about one aspect at a time, really - I hadn't gotten to the point where I could abstract out the "Aspect" and think in those terms. In short: roll your own or find a toolset you like, probably from Eric Bodden's list.

link|flag

Your Answer

Get an OpenID
or

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