Part II: Mimic SynchronizationContext behaviour on .NET CF
Not long ago I posted the first part of this article under:
Part I: Mimic SynchronizationContext behaviour on .NET CF
The article was intended to give the reader a better feeling of the purpose of the SynchronizationContext and the importance of the class on behalf of synchronization between different apartment threads. Unfortunately the SynchronizationContext is not available on the .NET compact framework which is especially annoying when you want to port existing code which uses the SynchronizationContext onto the compact framework platform. So how can we obtain similar functionality on the compact framework?

