【发布时间】:2010-10-08 14:34:45
【问题描述】:
var types=from m in System.Reflection.Assembly.Load("System").GetTypes()
where m.IsClass
where // something to check whether or not the type is a static class.
select m;
我想从我的结果中填写任何静态类。
【问题讨论】:
-
这对你没有帮助:stackoverflow.com/questions/1175888/… ?
标签: c#