• 获取类的描述信息 DescriptionAttribute


            static void Main(string[] args)
            {
                var attrs = typeof(TestClass).GetCustomAttributes(typeof(System.ComponentModel.DescriptionAttribute), true);
                if (attrs.Length > 0)
                {
                    var descriptionAttribute = attrs[0] as System.ComponentModel.DescriptionAttribute;
                    if (descriptionAttribute != null)
                        Console.WriteLine(descriptionAttribute.Description);
                }
                Console.ReadKey();
            }
  • 相关阅读:
    奔溃瞬间1
    面试知识点blog汇总
    贪心
    树 和 图
    DFS 和 BFS
    STL
    哈希表
    手写堆
    并查集
    二项式反演学习笔记
  • 原文地址:https://www.cnblogs.com/ideacore/p/7487979.html
Copyright © 2020-2023  润新知