AngryHacker
AngryHacker

Reputation: 61636

Multi-process support within the same app?

Google Chrome and IE8 implement multi-process support for each tab. How would I implement something like that using c# and vs2008?

Upvotes: 3

Views: 245

Answers (1)

Tamas Czinege
Tamas Czinege

Reputation: 121384

Umm... look up Inter-process communication. Then make your processes communcate with each other (e.g. passing data structures, commands, etc.). You will probably need a rendering process and a main process as well (or combine these two into a single rendering/commanding process).

Upvotes: 2

Related Questions