using System.Reflection;
1 2 3 4 5 6 7 8 9 10 11
using System.Reflection; StackTrace stackTra = new StackTrace(); string MethodName0 = stackTra.GetFrame(0).GetMethod().Name; //Aktuelle MethodenName string MethodName1 = stackTra.GetFrame(1).GetMethod().Name; //Methode davor