You could look at the ReflectedType of the MethodBase you get from GetCurrentMethod, i.e.,
MethodBase method = System.Reflection.MethodBase.GetCurrentMethod();
string methodName = method.Name;
string className = method.ReflectedType.Name;
string fullMethodName = className + "." + methodName;