Open the list in multiple instances of the application

I would like to have List<int>which multiple instances of my application can access. At the moment, I can cheat and use the global mutex, but this is unlikely to work well after 10K int. How to get multiple instances of a program to share a list?

+3
source share
1 answer

An easy way to do this is to put this data into a Windows user service.

In this service, transfer the data you want to provide and provide access to this data using any IPC. The simplest is WCF.

. , , "" . , .

, Raja, . , .

+2

All Articles