private SharedMemory.SharedArray _buffer = _buffer = new SharedArray(@"Global\MARKETTICK", 200000); from within window service.
Try creating
SharedMemory.SharedArray _reader = new SharedArray(@"Global\MARKETTICK");
I Get "Access to the path 'Global\MARKETTICK_evt_write' is denied"
When I create the file without Global Prefix i.e.
private SharedMemory.SharedArray _buffer = _buffer = new SharedArray("MARKETTICK", 200000); from within window service.
from Console
SharedMemory.SharedArray _reader = new SharedArray(@"MARKETTICK");
I get file not found error.