Example #1
0
        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);
        }
Example #2
0
        public static string GetMethodFormatText(MethodInfo methodInfo)
        {
            bool flag;

            return(LogicMethodPropertyInfoUtils.GetMethodFormatText(methodInfo, out flag));
        }