asp.net core 怎么获调的前一个方法名
例如 方法 A 调用B 在B中获取A的名
之前可以用 System.Reflection.MethodBase methodInfo = new System.Diagnostics.StackFrame(1).GetMethod();
来获取,在.net core 中好像不起作用
.NET Core中还没实现,详见 https://github.com/dotnet/corefx/issues/1797