FRAGE zu Exception Handling

Die Preisfrage! Siehe weiter unten... Bitte Mail an mich oder als Kommentar!

[STAThread]
static void Main(string[] args)
{
  try
  {
    Application.ThreadException += new    
        ThreadExceptionEventHandler(Application_ThreadException);

    Application.Run(new Form1());
  }
  catch (Exception ex)
  {
    HandleException(ex);
  }
  catch
  {
    // Kann dieser Code jemals aufgerufen werden???
    HandleException(new Exception("Catch not .net Exception"));
  }
}

Inter Prozess Kommunikation in .net c#

Wie können zwei Prozesse kommunizieren? Prinzipiell funktionierts über die Windows API und WM_COPYDATA Nachricht Mit dieser Klasse funzts in .net c# und auch vb.net-code: Simple Interprocess Communication with .net c# vb Somit kann applikation dauernd ausgeführt werden im hintergrund, und empfängt neue signale von aussen. z.B. Neue Commandline Parameter...

Do's and Dont's für Programmierer

Vor allem interessant wenn man fremden Code übernehmen muss!! Karl Seguin [MVP] : Have I inherited a disaster?

Latest Posts

Popular Posts