列表中的反射器

本文关键字:反射器 列表 | 更新日期: 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中搜索类型,这将导致它被正确找到…)