How to handle Memory Mapped files with C#?

  • Thread starter Thread starter Joel Foner
  • Start date Start date
J

Joel Foner

Is there any support for memory mapped files in the .Net framework? I have
an application that would be made much easier if I had an easy way to read
an existing memory mapped file generated by another application, and could
write another MMF back in response...

Any and all ideas welcomed.

Thanks in advance,

Joel
 
AFAIK .NET has no support for MMF, so you can write managed wrapper around
win32 api for MMF with the help of P/Invoke
 
Back
Top