Benutzer:MovGP0/C♯

aus Wikipedia, der freien Enzyklopädie
   MovGP0        Über mich        Hilfen        Artikel        Weblinks        Literatur        Zitate        Notizen        Programmierung        MSCert        Physik      


C♯

Structured Exception Handling (SEH)

try
{
   // ...
}
catch(MyException e)
{
   // ...
}
catch(Exception e)
{
   // ...
}
catch
{
   // ...
}
finally
{
   // ...
}

Internetquellen