1

I'v heard about aspects in a programming language and I was pretty enthusiastic about it. However I do not know how to get started with them. And I tought you guys may be set in the right direction.

jorne
  • 894
  • 2
  • 11
  • 23

1 Answers1

1

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.

Have a look at the below link where you can find some examples and tutorial

http://www.sharpcrafters.com/

Aspect Oriented Programming in C#

Community
  • 1
  • 1
Massimiliano Peluso
  • 26,379
  • 6
  • 61
  • 70