Click here to Skip to main content
15,891,703 members
Home / Discussions / C#
   

C#

 
GeneralRe: How can i access event of other class Pin
Naveed72730-Apr-08 21:56
Naveed72730-Apr-08 21:56 
GeneralRe: How can i access event of other class Pin
Razvan Dimescu1-May-08 7:21
Razvan Dimescu1-May-08 7:21 
GeneralCapture Http POST data from IE Pin
kafeel27-Apr-08 20:51
kafeel27-Apr-08 20:51 
GeneralTemporary DLL files Pin
Ahmet GULBAY27-Apr-08 20:47
Ahmet GULBAY27-Apr-08 20:47 
GeneralRe: Temporary DLL files Pin
Christian Graus27-Apr-08 21:00
protectorChristian Graus27-Apr-08 21:00 
GeneralRe: Temporary DLL files Pin
Ahmet GULBAY27-Apr-08 21:16
Ahmet GULBAY27-Apr-08 21:16 
GeneralThreadPool Pin
George_George27-Apr-08 19:40
George_George27-Apr-08 19:40 
GeneralRe: ThreadPool Pin
Zoltan Balazs27-Apr-08 21:48
Zoltan Balazs27-Apr-08 21:48 
These are not simple questions Wink | ;)

1. using directly the ThreadPool by QueueUserWorkItem or indirectly by asynchronous methods will share the same thread pool.
2. In .NET 2.0 any unhandled exception on any thread shuts down the application (see here[^])
The solution is to
- use a try/catch block in every thread entry method (in order to avoid application shutdown in case of an unhandled exception)
- or use the application domain AppDomain.UnhandledException event.



GeneralRe: ThreadPool Pin
George_George27-Apr-08 23:30
George_George27-Apr-08 23:30 
GeneralRe: ThreadPool Pin
Zoltan Balazs28-Apr-08 1:29
Zoltan Balazs28-Apr-08 1:29 
GeneralRe: ThreadPool Pin
George_George28-Apr-08 1:43
George_George28-Apr-08 1:43 
GeneralRe: ThreadPool Pin
Zoltan Balazs28-Apr-08 2:49
Zoltan Balazs28-Apr-08 2:49 
GeneralRe: ThreadPool Pin
George_George28-Apr-08 3:50
George_George28-Apr-08 3:50 
GeneralRe: ThreadPool Pin
Zoltan Balazs28-Apr-08 4:29
Zoltan Balazs28-Apr-08 4:29 
GeneralRe: ThreadPool Pin
George_George28-Apr-08 4:51
George_George28-Apr-08 4:51 
GeneralRe: ThreadPool Pin
Zoltan Balazs28-Apr-08 4:58
Zoltan Balazs28-Apr-08 4:58 
GeneralRe: ThreadPool Pin
George_George29-Apr-08 1:31
George_George29-Apr-08 1:31 
GeneralRe: ThreadPool Pin
Zoltan Balazs29-Apr-08 1:47
Zoltan Balazs29-Apr-08 1:47 
GeneralRe: ThreadPool Pin
George_George29-Apr-08 2:13
George_George29-Apr-08 2:13 
Questionhow to solve this problem: plz help me urgent Pin
ssrirambatlasripad27-Apr-08 19:20
ssrirambatlasripad27-Apr-08 19:20 
GeneralRe: how to solve this problem: plz help me urgent Pin
BJ Basañes27-Apr-08 19:37
BJ Basañes27-Apr-08 19:37 
GeneralRe: how to solve this problem: plz help me urgent Pin
Christian Graus27-Apr-08 19:44
protectorChristian Graus27-Apr-08 19:44 
GeneralRe: how to solve this problem: plz help me urgent Pin
Vasudevan Deepak Kumar28-Apr-08 1:56
Vasudevan Deepak Kumar28-Apr-08 1:56 
QuestionDo not allow CHECK IN the code with out following the FxCop rules Pin
Nais27-Apr-08 19:10
Nais27-Apr-08 19:10 
GeneralRe: Do not allow CHECK IN the code with out following the FxCop rules Pin
Vasudevan Deepak Kumar28-Apr-08 1:59
Vasudevan Deepak Kumar28-Apr-08 1:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.