I have just got the wierdest problem in my Windows Froms C# application
I got a few Console.WriteLine
in my code for debug, but suddenly this stopped working. For example
try{
line(of.code);
Console.WriteLine("HERE");
other.line(of.code);
}
catch (Exception e)
{
logger.logg(e.ToString());
}
I will not get to the other.line(of.code);
line, and I do not get the "HERE" in the console.
There is a few places in the code, the same happens on all of them. It just stops, it does NOT get to the catch...
And the worst part, it worked earlier. I have worked on applications for a long time, and have never seen anything like it.