c# - How can i figure out KERNELBASE.dll Error? -
I'm getting the error from my window application. I could not understand the exception, because the special error is not logged in my exception logger file This is the reason why it is coming
has failed in the application name :. Test.exe, Version: 1.0.0.15, Time Stamp: 0x51481394 Module name unsuccessful: KERNELBASE.dll, Version: 6.1.7601.18015, Time Stamp: 0x50b83b16 Exception Code: 0xe053534f Accidental Correction: 0x0000812f Process ID has failed: 0x The time to start% 9 applications has failed: 0x% 10 application path is unsuccessful:% 11 module path has failed:% 12 Report ID:% 13Please find the code below
Private zeroes frmSetTime_Load (object sender, EventArgs e) {try {string} cmds = System.Environment.GetCommandLineArgs (); // Here I get a command line argument; hold (exception before) {message box.Show (ex.message); } Finally {GC.Collect (); }} Public Zero ExecuteLogic (object obj) {try {// My set description of therad.sleep (5000); ExecuteLogic (obj); } Catch (Exception Pre) {Message Box.show (ex.message); } Finally {GC.Collect (); ApplicationRestart (); }} Private Zero applicationRestart (try {if (Process.GetCurrentProcess (.) WorkingSet64> = 10000000} {application.Resert ();}} Catch (Exception pre) {message box. Show (ex.message);}}
After
You have an endless reversion in
ExecuteLogic Call it will eventually run the system out of the stack space. If you do not want to leave
ExecuteLogic , then just use a loop for a while
Comments
Post a Comment