about catch exception

  • Thread starter Thread starter Ha ha
  • Start date Start date
H

Ha ha

hello
who can teach me how to catch the throwed exception in a thread
which is created by a main process.
 
The easiest way around this is to handle the AppDomain.UnhandledException
event, as this should catch exceptions for all threads running in that app
domain.
 
Back
Top