Pregunta

¿Cuál es la mejor manera de solucionar un error en un .Net Framework?

¿Fue útil?

Solución

El lugar para informar errores en el marco .net es aquí .

Otros consejos

Microsoft Connect se ha apagado. Los lugares correctos ahora son:

.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

El lugar preferido para ingresar un error para .Net core es probablemente GitHub ahora

https://github.com/dotnet/coreclr

Hay varios otros repositorios relevantes para enviar problemas / solicitudes de extracción https://github.com/dotnet

este parece el lugar donde realmente arreglan lo que se ha informado: https://github.com/aspnet / EntityFramework6 / issues

Prueba esto:

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

En lugar de obtener " 2, 2, 4, 4 " se obtiene " 2, 4 " ...

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top