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.
I’v heard about aspects in a programming language and I was pretty enthusiastic about
Share
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#