Christian Kusmanow
Erfahrenes Mitglied
Ich hab mal schnell einen [thread=249368]Exception Handling - Linkliste[/thread] Thread erstellt.
Du musst doch langsam die Klasse kennen oder? Die Exception sagt dir nach wie vor,
dass die Klasse keinen Konstuktor besitzt der keine Parameter hat.
Du musst doch langsam die Klasse kennen oder? Die Exception sagt dir nach wie vor,
dass die Klasse keinen Konstuktor besitzt der keine Parameter hat.
Da hast ein Beispiel:Silvercreast hat gesagt.:weiß zwar ich mit try-catch umgehen muss und wie ich mir ne Exeption anzeigen lasse, aber so richtig halt noch nicht
C#:
sealed class Program
{
[STAThread]
static void Main() {
DemoForm app = null;
try {
Application.EnableVisualStyles();
Application.DoEvents();
app = new DemoForm();
Application.Run( app );
}
catch ( Exception ex ) {
MessageBox.Show(
string.Format( "{0}{1}{1}{2}", ex.GetType().FullName, Environment.NewLine, ex.ToString() ),
string.Format( "{0} ({1})", ex.Source, ex.GetType().Name ) );
}
finally {
if ( app != null ) {
app.Dispose();
app = null;
}
GC.WaitForPendingFinalizers();
GC.Collect();
}
}
}
Zuletzt bearbeitet: