The SharedMemory library provides a set of C# classes that utilise a memory-mapped file for fast low-level inter-process communication (IPC) - specifically for sharing data between processes.
It features:
* a lock-free FIFO circular buffer
* a simple fixed-size generic shared memory array class...
More information
MachineMappedSettings.NetConfigFile is a .NET library that provides a simple config section similar to the appSettings config section in a .NET config file that maps settings by key and machine name which allows multiple instances of the same key to be configured with different values and machine...
More information
This package is a great and a fast way to share (big) objects between 2 or more processes. Usage var mmo = new MemoryMappedObject(<name you object>); then use Create to create and store the object (the object is cleared as soon as the process dies). To read the object in other project, use the same...
More information