I've been reading up a bit on Application Domains and Threading, and I came across this statement:
"A particular thread is not confined to a single application domain. That is, threads are free to cross application domain boundaries; a new thread is not created for each application domain."
Now that's all well and good, but I thought to myself - when exactly is that crossing of domains by the thread going to happen?
I have seen examples of people creating Application Domains and using CreateInstanceAndUnwrap and MarshalByRefObject. But - marshalling is available between completely seperate processes! So meh - that's not what I call "free to cross".
Can anyone provide example (C#) code of a thread crossing application domains without marshalling, as I do not consider this "free"? (or am I just totally muddled up as usual).