Ralf

Results 74 comments of Ralf

ok thx for the test. I will have a look into it after I finished working on issue Suppressing Rethrow #2

Feel free to use my avatar as desktop background for the daily morning smile :-)

can you retry this with latest method boundary aspect?

possible workaround: move async method body in normal method and apply aspect to this method

Can somebody verify that this is fixed with PR #39 ?

Support for async was implemented by @keith-anders and we are not experienced enough to implement the IL Code for the async state machine. It seems that method with signature "async...

When profiling these approaches in this system I got: ``` using System.Reflection; using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Running; namespace MyBenchmarks { public class GetMethodInfo { public static MethodBase Cache; [Benchmark] public MethodBase...

I managed to implement storing the method info in static fields to avoid using "Method.GetCurrentMethod". With this change to overhead of an aspect invocation shrinks from 841,12ns - 56,83ns =...

The benchmark project is here [project](https://github.com/vescon/MethodBoundaryAspect.Fody/tree/master/src/MethodBoundaryAspect.Fody.Benchmark)

@jerviscui can you verify the improved performance?