Support for multiple processes in one application?

Google Chrome and IE8 support multi-process support for each tab. How do I implement something like this using C # and vs2008?

+3
source share
1 answer

Umm ... look for interprocess communication . Then make your processes consistent with each other (for example, pass data structures, commands, etc.). You will probably need the rendering process and the main process (or combine these two into one rendering / command process).

+2
source

Source: https://habr.com/ru/post/1708049/


All Articles