+ 1
Catching Exceptions throw from child Thread.
What's the best way of catching a unhandled Exception like this? new Thead(() => {throw new Exception();}).start();
1 ответ
+ 1
Possible solution:
https://code.sololearn.com/cY049q81F4qT/?ref=app
What's the best way of catching a unhandled Exception like this? new Thead(() => {throw new Exception();}).start();