ApprovalUtilities.SimpleLogger.LoggerInstance.GetCallingMethod C# (CSharp) Метод

GetCallingMethod() публичный Метод

public GetCallingMethod ( ) : string
Результат string
        public string GetCallingMethod()
        {
            var outsideCallingMethod =
                new Caller().Methods.First(m => m.DeclaringType.Namespace != this.GetType().Namespace);
            return outsideCallingMethod.ToStandardString();
        }