Where can I report .Net Framework bug?

2019-02-16 04:25发布

What's the best way to get a bug in a .Net Framework resolved?

6条回答
疯言疯语
2楼-- · 2019-02-16 04:33

this looks like the place where they actually fix what's been reported: https://github.com/aspnet/EntityFramework6/issues

查看更多
forever°为你锁心
3楼-- · 2019-02-16 04:37

The place to report bugs in the .net framework is here.

查看更多
在下西门庆
4楼-- · 2019-02-16 04:37

this might help : Microsoft Connect

查看更多
▲ chillily
5楼-- · 2019-02-16 04:43

Microsoft Connect has shut down. The correct places now are:

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

.NET Core Libraries: https://github.com/dotnet/corefx/issues

.NET Core Runtime: https://github.com/dotnet/coreclr/issues

查看更多
倾城 Initia
6楼-- · 2019-02-16 04:45

Try this:

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))
);

Instead of getting "2, 2, 4, 4" you get "2, 4"...

查看更多
唯我独甜
7楼-- · 2019-02-16 04:53

The preferred place to enter a bug for .Net core is probably GitHub now

https://github.com/dotnet/coreclr

There are several other relevant repos to submit issues / pull requests https://github.com/dotnet

查看更多
登录 后发表回答