什么是获得一个.NET Framework解决?

错误的最好方式
有帮助吗?

解决方案

以报告在.NET Framework错误的地方是此处

其他提示

Microsoft连接已关闭。正确的地方现在:

的.NET Framework: https://developercommunity.visualstudio.com/spaces/61/的index.html

.NET核心库: https://github.com/dotnet/corefx/issues

.NET核心运行: https://github.com/dotnet/coreclr/issues

要输入的.Net核心的一个错误的首选地点可能是现在的GitHub

https://github.com/dotnet/coreclr

有其他几个相关的回购提交问题/拉请求 https://github.com/dotnet

这看起来像他们实际解决什么是被报道的地方: https://github.com/aspnet / EntityFramework6 /问题

尝试这种情况:

Console.WriteLine(
    new int[] { 2, 2, 3, 3, 4, 4 }
        .Except(new int[] { 3 })
        .Select(a => a.ToString())
        .Aggregate((a, b) => String.Format("{0}, {1}", a, b))
);

非但没有"2, 2, 4, 4"的你"2, 4" ...

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top