Shared Memory?

  • Thread starter Thread starter Pramod
  • Start date Start date
P

Pramod

Please let me know if we can use Shared Memory in dot net? and what is
the difference between IPC Channel and Shared Memory? Does IPC Channel
uses named pipes/shared memory?

Thanks in advance.

-PC CC
 
Please let me know if we can use Shared Memory in dot net? and what is
the difference between IPC Channel and Shared Memory? Does IPC Channel
uses named pipes/shared memory?

Thanks in advance.

-PC CC

What you want to do?
You could use shared memory but you will have to pinvoke and marshall
it.
In .et you can use other ways to share data between instances, take a
look at remoting
 
Pramod said:
Please let me know if we can use Shared Memory in dot net? and what is
the difference between IPC Channel and Shared Memory? Does IPC Channel
uses named pipes/shared memory?

DllImport: CreateFileMapping, MapViewOfFile, UnmapViewOfFile,
CloseHandle - and Marshal.Copy to move data in and out.

Arne
 
Back
Top