wliao008 / buffalo

an aspect oriented programming framework using mono cecil for the .NET platform
1 stars 0 forks source link

Handle MethodArgs.Proceed() from the Around aspect #13

Closed wliao008 closed 11 years ago

wliao008 commented 11 years ago

Currently this is left out, need to implement this.

wliao008 commented 11 years ago

Original method:

int add (int a, int b){
    return a+b;
}

When invoke from the aspect via:

 return args.Proceed(a, b)

The following should take place (or something like this?):