示例#1
0
        public string GetPropertyFormatText(PropertyInfo propertyInfo, bool ignoreClassName)
        {
            bool   flag;
            string propertyFormatText = LogicMethodPropertyInfoUtils.GetPropertyFormatText(propertyInfo, out flag);

            if (flag)
            {
                return(propertyFormatText);
            }
            if (!ignoreClassName)
            {
                return(this.Name + "." + propertyFormatText);
            }
            return(propertyFormatText);
        }
示例#2
0
        public static string GetPropertyFormatText(PropertyInfo propertyInfo)
        {
            bool flag;

            return(LogicMethodPropertyInfoUtils.GetPropertyFormatText(propertyInfo, out flag));
        }