SourceForge.net Logo

NKalore Compiler


Home
Roadmap
Downloads 
Samples
About
Samples

  • around1.cs
    A simple demostration for around advice.
  • logging.cs
    Log all methods executed in the application, the log also includes the names and values of the parameters of the method.
  • exception5.cs
    Apply the advice throwing to catch any exception that occur in the RunCommand method, and change the result of the method.
  • Constructor.cs
    Apply the advice after and before in a constructor.
  • around3.cs
    Use the around advice to cache the result of all method that return a boolean value. So, if you can call the method twice (wth the same parameters), the second time, the result is read from cache.