Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/.net/25.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 反射器中的列表_C#_.net_Reflector - Fatal编程技术网

C# 反射器中的列表

C# 反射器中的列表,c#,.net,reflector,C#,.net,Reflector,MSDN声明列表集合源自: System.Collections.Generic.List 但当我打开.NET Reflector 6时,这就是我在System.Collections.Generic中看到的: 比特助手 伊塞特 链接列表 链接列表节点 排队 分类词典 但没有名单 如果我右键单击System.Collections.Generic,然后在“Search MSDN”上单击所有的Generic类和includes列表 但我在.netreflector. 在哪里可以找到它?Linke

MSDN声明列表集合源自:

System.Collections.Generic.List

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

比特助手

伊塞特

链接列表

链接列表节点

排队

分类词典

但没有名单

如果我右键单击
System.Collections.Generic
,然后在“Search MSDN”上单击所有的Generic类和includes列表

但我在
.netreflector.

在哪里可以找到它?

LinkedList
和您提到的其他类都在
System.dll
程序集中<代码>列表位于
mscorlib
中。它们都在
System.Collections.Generic
命名空间中

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

您可以在名称空间定义的右侧看到:

命名空间:System.Collections.Generic

程序集:mscorlib(在mscorlib.dll中)

但是,例如,显示:

命名空间:System.Collections.Generic

程序集:系统(在System.dll中)

(请注意,您还可以在Reflector中搜索该类型,这将导致正确找到该类型…)