System.Reflection.TypeFilter.cs
时间:2020-04-10 23:50:45
收藏:0
阅读:71
ylbtech-System.Reflection.TypeFilter.cs |
1.返回顶部 |
1、
#region 程序集 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 // C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\mscorlib.dll #endregion using System.Runtime.InteropServices; namespace System.Reflection { // // 摘要: // 筛选 System.Type 对象数组中表示的类。 // // 参数: // m: // 对其应用筛选器的 Type 对象。 // // filterCriteria: // 用于筛选列表的任意对象。 // // 返回结果: // 若要在筛选后的列表中包括 System.Type,则为 true;否则为 false。 [ComVisible(true)] public delegate bool TypeFilter(Type m, object filterCriteria); }
2、
2.返回顶部 |
3.返回顶部 |
4.返回顶部 |
5.返回顶部 |
6.返回顶部 |
![]() |
作者:ylbtech 出处:http://ylbtech.cnblogs.com/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |
原文:https://www.cnblogs.com/storebook/p/12676712.html
评论(0)