System.Collections.NonGeneric 在超过 1.3 的 NetStandard 库中缺失

System.Collections.NonGeneric is missed in NetStandard Library over 1.3

以下url指向版本4.0.0,System.Collections.NonGeneric存在于NetStandard 1.2

之后

https://github.com/dotnet/corefx/blob/master/Documentation/architecture/net-platform-standard.md

但在 Nuget 站点 NetStandard 中没有 System.Collections.NonGeneric。

https://www.nuget.org/packages/NETStandard.Library/

为什么NetStandard 1.3及更高版本没有System.Collections.NonGeneric?

虽然您提供的 Github 列表确实包含各种 NetStandard 版本的所有受支持合同,但这并不意味着它们都打包在一起。非通用集合在与 NetStandard 1.3+ 兼容的 separate NuGet package 中可用。

我无法明确回答为什么将它们分开,但我猜想非通用集合并不经常使用。这些集合的通用版本对于大多数用例更有用。