I am debugging an exception in my ASP.NET Application (C# , visual studio). this exception is thrown at the top level of another thread (this is not the problem, i changed that behaviour to not throw a top level exception).
I was just wondering about this: This Exception kills the whole worker process. But, when i am debugging, the debugger stops at that exception and it seems to be 'thrown' repeatedly (whenever i press continue, it will stop at that same line again). It does not execute the line before again, so it really stops at that special exception.
Is this just because of a special behaviour of the debugger? Or is that exception also thrown repeatedly when i am not debugging it?
Thanks in advance!