Can an unhandled exception in a C# application cause a blue screen of death?
Not unless you're dealing with unmanaged resources like raw memory access. (In which case the Exception isn't likely the cause)
.NET Exceptions will be caught by the runtime environment. You can crash your PROGRAM but not the OS.
In my experience the only things that cause BSOD's are bad drivers, and hardware errors. (This of course is not an extensive list of the causes of BSOD, but that's the first place I look.)
The only causes for a BSOD are hardware error, OS bug, or driver bug. .NET code cannot ever cause a BSOD.
No; ideally, there should be no way to cause a BSOD from C#.
Show us the code that is causing it and we'll see if we can help.
No, it wouldn't. That's not to say that you couldn't potentially cause a BSOD with a C# program, but if you did, it wouldn't be due to an unhandled exception being thrown.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With