.Net Frameworkのバグはどこで報告できますか? [閉まっている]

StackOverflow https://stackoverflow.com/questions/645927

  •  22-07-2019
  •  | 
  •  

質問

.Net Frameworkのバグを解決する最良の方法は何ですか?

役に立ちましたか?

解決

.netフレームワークのバグを報告する場所は、こちらです。

他のヒント

Microsoft Connectがシャットダウンしました。正しい場所は次のとおりです。

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

.NETコアライブラリ: https://github.com/dotnet/corefx/issues

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

.Netコアのバグを入力するのに望ましい場所は、おそらくGitHubである可能性があります

https://github.com/dotnet/coreclr

問題/プルリクエストを送信するためのその他の関連リポジトリがいくつかあります https://github.com/dotnet

これは、報告された内容を実際に修正する場所のように見えます: https://github.com/aspnet / EntityFramework6 / issues

これを試してください:

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