public string GetMethodFormatText(MethodInfo methodInfo, bool ignoreClassName) { bool flag; string methodFormatText = LogicMethodPropertyInfoUtils.GetMethodFormatText(methodInfo, out flag); if (flag) { return(methodFormatText); } if (!ignoreClassName) { return(this.GetDisplayName() + "." + methodFormatText); } return(methodFormatText); }
public static string GetMethodFormatText(MethodInfo methodInfo) { bool flag; return(LogicMethodPropertyInfoUtils.GetMethodFormatText(methodInfo, out flag)); }