M
Matthias Jentsch
Hello,
I have a simple testapplication:
public class Test : ApplicationContext
{
private static void Main ()
{
Application.Run(new Test());
}
public Test()
{
ExitThread();
}
}
When i run this application the application never exists. But why? I think
when i'm calling the ExitThread-Method the my application should exit.
I have a simple testapplication:
public class Test : ApplicationContext
{
private static void Main ()
{
Application.Run(new Test());
}
public Test()
{
ExitThread();
}
}
When i run this application the application never exists. But why? I think
when i'm calling the ExitThread-Method the my application should exit.