列表中的反射器
本文关键字:反射器 列表 | 更新日期: 2023-09-27 17:51:18
MSDN文档说List集合派生自:
System.Collections.Generic.List
但是当我打开。net Reflector 6时,这是我在System.Collections.Generic
中看到的:
BitHelper
ISet
LinkedList
LinkedListNode
队列SortedDictionary
…
But no List.
如果我右键单击System.Collections.Generic
,然后单击"搜索MSDN",它列出了所有的通用类,包括列表。
但我没有看到列表在.Net Reflector.
我在哪里可以找到它?
LinkedList<T>
和您提到的其他类都在System.dll
程序集中。List<T>
在mscorlib
中。都在System.Collections.Generic
命名空间。
确保浏览到mscorlib
中的System.Collections.Generic
命名空间部分,而不是System
。
你可以在MSDN的List<T>
页面的名称空间定义下看到这个:
名称空间:System.Collections.Generic
程序集:mscorlib (in mscorlib.dll)
但是,例如,LinkedList<T>
显示:
名称空间:System.Collections.Generic
程序集:System (in System.dll)
(请注意,您也可以在Reflector中搜索类型,这将导致它被正确找到…)