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?
user34537
source
share