Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

HI, Any good resources to wrap my head around Aspect Oriented Programming?

PS:- I need to understand AO programming not the libraries or frameworks available for .NET or C# :)

share|improve this question
Seems to me like a dupe for stackoverflow.com/questions/325558/… – Graviton Oct 5 '09 at 7:35
Aspect Oriented Programming – KMån Jul 21 '12 at 12:59

5 Answers

up vote 27 down vote accepted

Just to get your head around it: It is the ability to hook events such as: creation of objects, setting of properties, etc, and attach general functions to them, that will be populated with relevant context.

Because C# doesn't have an inbuilt facility for this, you need a framework, like PostSharp, to do 'bytecode weaving' (i.e. just writing code to actually make the calls, directly to your classes) to simulate it.

share|improve this answer
4  
On a side note, postsharp.org has a great explanation of what it is and it's uses. – RCIX Sep 13 '09 at 5:22
Yes postsharp is good thing (also have good site!) – TheVillageIdiot Sep 13 '09 at 17:35
runtime emit is also good. Unity and others use reflection emit to do method interception. Also .net does have a hook ContextBoundObjects like Jean mentioned. Unfortunetly there is a huge perf hit with context bound objects. – AbdElRaheim Oct 26 '12 at 6:32

What a timely question?

Here is the podcast worth listening.
This will give you a good overview on what is AOP? where it can be used?

Hope that helps.

share|improve this answer

Aspect Oriented Programming means having a meta level where yo can define logging or security/access control features to interweave with your code instead of implementing these feature very time in your code. So instead of beeing one-dimensional, you have to program two-dimensional.

I know this may sound very esotheric but it is easy once you understood it.

AOP often works with proxy classes which intercept calls and do things in the background.

share|improve this answer

A good link below, shows you how to code up an AOP framework of your own. Unfortunately, all of your consuming classes have to inherit from the MarshalByRefObject (through ContextBoundObject).

http://www.developerfusion.com/article/5307/aspect-oriented-programming-using-net/3/

share|improve this answer

check this out, it is describing how to implement AOP ( log, timing, tracing, exception handling...) using postsharp

http://www.codeproject.com/Articles/337564/Aspect-Oriented-Programming-Using-Csharp-and-PostS

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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