I have recently started studying about threads. I thought of starting from the beginning and started reading MSDN documentation. Read about ApplicationDomain which is separate for each application. But in this link ApplicationDomain and Threads it is mentioned that
Several threads can be executing in a single application domain at any given time and a particular thread is not confined to a single application domain. That is, threads are free to cross application domain boundaries
If a user created a thread and if it is allowed to cross application domain, then can it refer to the objects or memory reference of another applicationdomain ??? Please guide me if I am wrong.