我在哪里可以找到单声道源代码中 System.Collections.Concurrent 类 的定义?
Where can I find the definitions of System.Collections.Concurrent classes in the mono source code?
我正在寻找 System.Collections.Concurrent
类 的源代码,尤其是单声道源中的 ConcurrentQueue
和 ConcurrentDictionary
。我找不到他们。
我正在查看 corlib
目录:
https://github.com/mono/mono/tree/master/mcs/class/corlib
但它不包含 System.Collections.Concurrent
包。即使使用 github 的存储库搜索功能也没有生成源代码。
已经有 a question 问过类似的问题,但答案中提供的链接已失效。那么存储库中的集合源在哪里?
从 4.0 版开始,Mono 开始包含 Microsoft 开源的源代码 reference source。
包含自己的并发 类 代码版本的 Mono 的最后一个版本是 Mono 3.12,它具有 ConcurrentQueue and ConcurrentDictionary classes.
对于更高版本的 Mono 源代码为 System.Collections.Concurrent namespace is in the mono/referencesource GitHub repository, which is a fork of Microsoft's reference source repository。
我正在寻找 System.Collections.Concurrent
类 的源代码,尤其是单声道源中的 ConcurrentQueue
和 ConcurrentDictionary
。我找不到他们。
我正在查看 corlib
目录:
https://github.com/mono/mono/tree/master/mcs/class/corlib
但它不包含 System.Collections.Concurrent
包。即使使用 github 的存储库搜索功能也没有生成源代码。
已经有 a question 问过类似的问题,但答案中提供的链接已失效。那么存储库中的集合源在哪里?
从 4.0 版开始,Mono 开始包含 Microsoft 开源的源代码 reference source。
包含自己的并发 类 代码版本的 Mono 的最后一个版本是 Mono 3.12,它具有 ConcurrentQueue and ConcurrentDictionary classes.
对于更高版本的 Mono 源代码为 System.Collections.Concurrent namespace is in the mono/referencesource GitHub repository, which is a fork of Microsoft's reference source repository。