C # UWP Windows 10 Inter Process Communication with MemoryMappedFiles missing

I am having a new problem while encoding my IPC for my application.

Before UWP, I was able to successfully use the directive using System.IO.MemoryMappedFiles;. Now I can’t use using System.IO.MemoryMappedFiles;, and I need it.

Does everyone have one problem? If so, how did you solve it?

My application no longer compiles.

I already tried reimport System.Core.dll as a link and did not work with DllImport.

+4
source share
1 answer

Direct interprocess communication is not available in universal applications.

LaunchUriForResultsAsync , .

+7

Source: https://habr.com/ru/post/1608281/


All Articles