I developing windows form application in c#.net. Sometimes my program throw an error, windows error dialog shown (Please tell Microsoft about this problem, Send error report, Dont sent, bla bla…). I dont know why this dialog shown. What happening on my program?
I developing windows form application in c#.net. Sometimes my program throw an error, windows
Share
Because you don’t handle the exception in your program, indicating a bug. Windows’ default resort is the shown dialog. Your job is to either prevent or handle all potential exceptions in your code, Windows doesn’t do this for you (or rather, it does; only not to your liking).