[STAThread] ?
-
Hi, I often see [STAThread] above the main method of other people's classes, but I honestly have no idea what it does :) someone willing to enlighten me? (I know its static thread, but what does it DO?)
-
Hi, I often see [STAThread] above the main method of other people's classes, but I honestly have no idea what it does :) someone willing to enlighten me? (I know its static thread, but what does it DO?)
it just make ur app as "Single-Threaded apartment"
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)
-
Hello, It marks the main entry point for the application. Your programm will start at this point, in the main thread. All the best, Martin -- modified at 3:59 Monday 9th July, 2007 my spam message for today!
-
Hello, It marks the main entry point for the application. Your programm will start at this point, in the main thread. All the best, Martin -- modified at 3:59 Monday 9th July, 2007 my spam message for today!
-
-
Hi, I often see [STAThread] above the main method of other people's classes, but I honestly have no idea what it does :) someone willing to enlighten me? (I know its static thread, but what does it DO?)
Single Threaded Apartment Check out this http://blogs.msdn.com/jfoscoding/archive/2005/04/07/406341.aspx[^]
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Hi, I often see [STAThread] above the main method of other people's classes, but I honestly have no idea what it does :) someone willing to enlighten me? (I know its static thread, but what does it DO?)
this threrad is for keeping updating the GUI of your form i think!