我在哪里可以报告.Net Framework错误? [关闭]

问题描述 投票:32回答:6

解决.Net Framework中的错误的最佳方法是什么?

.net bug-reporting
6个回答
26
投票

在.net框架中报告错误的地方是here


10
投票

Microsoft Connect已关闭。现在正确的地方是:

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

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

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


1
投票

这可能会有所帮助:Microsoft Connect


1
投票

输入.Net核心的bug的首选地点现在可能是GitHub

https://github.com/dotnet/coreclr

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


0
投票

这看起来像是他们实际修复报道内容的地方:https://github.com/aspnet/EntityFramework6/issues


-4
投票

试试这个:

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" ...

© www.soinside.com 2019 - 2024. All rights reserved.