I have read little bit about COM threading model: MTA and STA, for example this SO post:
Difference between MTA and STA
There we can read that to communicate with object within STA we need to pump messages to this apartament.
My question is how to do it (C#/VB.NET)? How can I pump message from another thread, so for example, text box in WinForms updates (chagnes its text or whatever)?
Any remarks/pointers are acceptable too.