public static string GetDescription(ICustomAttributeProvider thing)
        {
            string description = string.Empty;
            thing.ForAttribute<DescriptionAttribute>(att => description = att.Text);

            return description;
        }
        public static string GetDescription(ICustomAttributeProvider thing)
        {
            string description = string.Empty;

            thing.ForAttribute <DescriptionAttribute>(att => description = att.Text);

            return(description);
        }