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

C#

 
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 
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 
It means that if the thread method does not contain a try/catch block the application will be terminated.
Example (try it with/without the try/catch)
public static void Main()
{
    new Thread(TestMethod).Start();
}

static void TestMethod()
{
    int i=0;
    double result;

    try { result = 100/i; }
    catch (DivideByZeroException exc)
    { Console.Write(exc.Message); }
}



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 
GeneralRe: Do not allow CHECK IN the code with out following the FxCop rules Pin
Nais28-Apr-08 17:56
Nais28-Apr-08 17:56 
QuestionChange File Attribue owner of the file (*.txt/ *.*) Pin
d.nagaraj27-Apr-08 19:00
d.nagaraj27-Apr-08 19:00 

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.