From the MSDN article on STAThread:

Indicates that the COM threading model for an application is single-threaded apartment (STA).

(For reference, that's the entire article.)

Single-threaded apartment... OK, that went over my head. Also, I read somewhere that unless your application uses COM interop, this attribute actually does nothing at all. So what exactly does it do, and how does it affect multithreaded applications? Should multithreaded applications (which includes anything from anyone using Timers to asynchronous method calls, not just threadpools and the like) use MTAThread, even if it's 'just to be safe'? What does STAThread and MTAThread actually do?

link|improve this question

feedback

4 Answers

up vote 28 down vote accepted

Apartment threading is a COM concept; if you're not using COM, and none of the APIs you call use COM "under the covers", then you don't need to worry about apartments.

If you do need to be aware of apartments, then the details can get a little complicated; a probably-oversimplified version is that COM objects tagged as STA must be run on an STAThread, and COM objects marked MTA must be run on an MTA thread. Using these rules, COM can optimize calls between these different objects, avoiding marshaling where it isn't necessary.

link|improve this answer
4  
That is oversimplified. Multithreaded objects can run in any thread. Apartment threaded objects can only run in the apartment they were created in. – 1800 INFORMATION Oct 3 '08 at 1:44
15  
A call from an STA object on an STA thread, to an MTA object, will marshal over to an MTA thread (unless the MTA object implements the free-threaded marshaler). Like I said, the details can get complicated. (I worked on the COM team for a number of years grin) – Bruce Oct 3 '08 at 2:26
4  
Sometimes you need to be aware of this even if you are not using COM directly. A thread must use the Single-Threaded Apartment model if it displays any graphical windows. This is why [STAThread] is always displayed on top of the main method in a windows forms application. – Justin Ethier May 15 '09 at 13:43
3  
Couldn't something like a Font or File dialog use COM without you knowing? I would assume they do internally, wouldn't that mean that almost any Windows Forms application would require STAThread to be set? Forgive my naieve assumption as I've not actually done COM programming. – Brett Ryan Feb 5 '10 at 17:05
2  
A more detailed answer for those that are interested: stackoverflow.com/questions/4154429/apartmentstate-for-dummies – jgauffin Jan 12 '11 at 11:53
show 1 more comment
feedback

What that does it it ensures that CoInitialize is called specifying COINIT_APARTMENTTHREADED as the parameter. If you do not use any COM components or ActiveX controls it will have no effect on you at all. If you do then it's kind of crucial.

Controls that are apartment threaded are effectively single threaded, calls made to them can only be processed in the apartment that they were created in.

Some more detail from MSDN:

Objects created in a single-threaded apartment (STA) receive method calls only from their apartment's thread, so calls are serialized and arrive only at message-queue boundaries (when the Win32 function PeekMessage or SendMessage is called).

Objects created on a COM thread in a multithread apartment (MTA) must be able to receive method calls from other threads at any time. You would typically implement some form of concurrency control in a multithreaded object's code using Win32 synchronization primitives such as critical sections, semaphores, or mutexes to help protect the object's data.

When an object that is configured to run in the neutral threaded apartment (NTA) is called by a thread that is in either an STA or the MTA, that thread transfers to the NTA. If this thread subsequently calls CoInitializeEx, the call fails and returns RPC_E_CHANGED_MODE.

link|improve this answer
feedback

STAThread is written before the Main function of a C# GUI Project. It does nothing but allows the program to create a single thread.

link|improve this answer
feedback

My Dear friends, I got the answer just now. I hope it suits your understanding. Any application can be either SINGLE threaded or MULTI threaded. Right?

Single Threaded = You can run your application only on one thread without parallel processing. You should right [STAThread] attribute just above the main()

Multi Threaded = You can divide your application to run on multiple threads. You can run many functions of application parallel. Here, you may need to Manage threads by using various features like lock() or Monitor() or WaitHandle. If you make your APPLICATION [STAThread] then IT IS AN ERROR to use WaitHandle.WaitAll to manage your threads in the application. By default, every application is MultiThreaded. Hence, [MTAThread] need not be added.

link|improve this answer
4  
I'm sorry, but you are mistaken, it's not that simple. – Henrik Feb 19 '11 at 20:22
To help you out a bit Aditya; e.g. 1. I create an WinForms application, it uses the dispatcher and a background worker. The dispatcher is one thread, the background worker another. Main has [STAThread] on it, as that is where the dispatcher is spawned from, but the background worker thread still means the application is multithreaded. – Henrik Feb 19 '11 at 20:24
e.g.2 not only functions can be run in parallel; methods can also be run in parallel. e.g. 3, it's not an error to use semaphores/monitors in STAThread-ed applications. You have to use them sometimes, as STAThread-ed applications may have multiplace managed threads. – Henrik Feb 19 '11 at 20:27
e.g. 4, you can run in a single thread but use asynchronous calls or callcc/continuewith to let the runtime manage whatever 'threading' is needed for the async calls (e.g. thread pools), and then you don't need semaphores. – Henrik Feb 19 '11 at 20:29
feedback

protected by Matthew Scharley Mar 21 at 21:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.