Get calling method name 29-12-2015 11:43:30 C# / Reflection 0 Bookmark(s) 212 View(s) public void GetCallingMethodName() { var stackTrace = new StackTrace(); Console.WriteLine(stackTrace.GetFrame(1).GetMethod().Name); }