Hi I am learning C# 3.5 and wanna to know that what [STAThread] do in our programs?
Thank you
|
1
|
Hi I am learning C# 3.5 and wanna to know that what [STAThread] do in our programs? Thank you
|
||
|
|
|
|
The MSDN explains the reason in slightly more detail:
This blog post (Why is STAThread required?) also explains the requirement quite well. If you want a more in-depth view as to how the threading model works at the CLR level, see this MSDN Magazine article. |
|||
|
|
|
|
Read more info here and |
||
|
|
|
|
It tells the compiler that you're in a Single Thread Apartment model. This is an evil COM thing, it's usually used for windows forms (gui's) as that uses Win32 for it's drawing which is implemented as STA. If you using something that's STA model from multiple threads then you get corrupted objects. This is why you have to invoke onto the Gui from another thread (if you've done any forms coding). Basically don't worry about it, just accept that windows gui theads must be marked as STA otherwise weird stuff happens. |
||||||||||
|
|
|
Take a look here. |
||
|
|
|
|
This means you are setting the program to a Single Thread Apartment state. This attribute only applies when the application is using interop with COM. It allows communication between single threaded architectures. |
||
|
|