I\'m facing a new problem, that occured while coding my IPC for my app.
Before UWP I was able to use the directive using System.IO.MemoryMappedFiles;
sucess
Support for MemoryMappedFiles in uwp was added while back. Although the documentation isn't clear, you can create and share MemoryMappedFiles
using the directive using System.IO.MemoryMappedFiles
. You have to declare codeGeneration
capability to be able to do that.
Direct inter-process communication is not available in Universal apps.
You can use App Services or LaunchUriForResultsAsync to perform tasks that span multiple apps.