Can I create a virtual disk in memory programatically?

.net, c#, virtual-disk

Solution

You could use a named pipe to transfer the data between applications.

Problem

For performance purposes I want to write to memory, where an external application can read. I can't link both applications together, so I think the only way is by writing a file. But writing it to a physical disk isn't fast enough. I want to mount a virtual partition so any application can access it. How to do it?

Original source

Related problems