[OT] What is AOP

  • Thread starter Abhishek Srivastava
  • Start date
A

Abhishek Srivastava

Hello All,

What is aspect oriented programming? How it is different from OO ?
Can one use AOP in C# programs?

Thanks for your help in advance.

regards,
Abhishek.
 
D

Dmitriy Lapshin [C# / .NET MVP]

Hello,

Search the online MSDN for "aspect oriented programming". An excellent
article on this subject should be available there.
 
R

rhavaldar at shodaka dot net

A whiff of AOP is already available in the form of 'attributes'.

AOP addresses cross-cutting concerns (such as security, exception
handling, logging) in your application. It basically addresses the
'horizontal aspects' of your application - stuff that you do not want
to clutter up your code with.

AOP came out of research work done @ (where else, but !) Xerox PARC.

There's tons of work going on in the Java space w/ regards to
AOP, esp JBoss and Eclipse. Recommend the following sites:

1. http://aosd.net/technology/research.php - links to all things aspect
2. AspectC# - http://www.dsg.cs.tcd.ie/index.php?category_id=169
3. An insightful interview @
http://www.theserverside.com/talks/videos/GregorKiczalesText/interview.jsp

-raghu
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Aspect Oriented Programming 11
AOP 4
OO or what? 7
Do you know LayerD technology? It'll be better than .NET? 1
Query Join - Outer Join? 5
aspect oriented programming 3
C# exe tlb 3
Funclets?? 2

Top