gpt4 book ai didi

c# - 反射器中的列表

转载 作者:行者123 更新时间:2023-11-30 13:48:00 25 4
gpt4 key购买 nike

MSDN docs说列表集合派生自:

System.Collections.Generic.List

但是当我启动 .NET Reflector 6 时,这是我在 System.Collections.Generic 中看到的:

BitHelper

ISet

LinkedList

LinkedListNode

Queue

SortedDictionary

...

但没有列表。

如果我右键单击 System.Collections.Generic,然后单击“搜索 MSDN”它 lists所有通用类并包括 List。

但我在 .Net Reflector 中看不到 List。

我在哪里可以找到它?

最佳答案

LinkedList<T>你提到的其他类(class)在 System.dll 中集会。 List<T>mscorlib .都在System.Collections.Generic命名空间。

确保浏览到 System.Collections.Generic mscorlib 中的命名空间部分, 不是 System .

可以看到这个on MSDN's page for List<T> 就在命名空间定义下:

Namespace: System.Collections.Generic

Assembly: mscorlib (in mscorlib.dll)

然而, LinkedList<T> ,例如,显示:

Namespace: System.Collections.Generic

Assembly: System (in System.dll)

(注意也可以在Reflector中搜索类型,这样会导致正确找到...)

关于c# - 反射器中的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14247289/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com