Le code suivant fonctionne bien jusqu'à ce que je passe à 4 .NET (x64)StackOverflowException dans .NET 4
namespace CrashME
{
class Program
{
private static volatile bool testCrash = false;
private static void Crash()
{
try
{
}
finally
{
HttpRuntime.Cache.Insert("xxx", testCrash);
}
}
static void Main(string[] args)
{
Crash();
// Works on .NET 3.5 , crash on .NET 4
}
}
}
ai-je UnCover juste un bug d'exécution, ou est-il un problème avec mon utilisation?
+1 pour __ StackOverflow__Exception :) –