Dot Net Remoting Question:

Explain Threading Types?

Tweet Share WhatsApp

Answer:

Theading types in Microsoft world are
STA -Single threaded apartment model- Synchronized
automatically- E.g Forms in windows(Win forms) are STA
application.
MTA -Multithreaded apartment model -Here synchronization is
required to acess shared resources. Use Mutex or Monitors

Download Dot Net Remoting PDF Read All 26 Dot Net Remoting Questions
Previous QuestionNext Question
What is boxing and unboxing?What is unmanaged code and will CLR handle this kind of code or not?