is begininvoke like CWinThread::PostThreadMessage in mfc?

  • Thread starter Thread starter alexl
  • Start date Start date
A

alexl

if not, what would be?

Also how do you start different threads that have event loops in .net.

could I do it like this?

static void Main()
{
new Thread(newform).Start();
new Thread(newform).Start();

}

public static void newform()
{
Form f = new Form();
Application.Run(f);
}


thx
 
Back
Top