Examples

Get going with some simple examples that will show you the basics of aspect oriented programming.

Download Now

Hello Logging.

using Aspekt;
class MyFirstAspect : Aspect
{
    public override OnEntry(Args...)
    {
        Console.WriteLine("Aspekt Wuz Here");
    }
}