2

Possible Duplicate:
Shared memory between 2 processes (applications)

Hello,

I need to store data into a particular fixed memory address because i need to read this data from another process.

So, every time I execute the program the address must remain the same.

Is there any way to do it?

thanks

Community
  • 1
  • 1
user615741
  • 43
  • 5

1 Answers1

1

I believe this is duplicate, but I add Inter-process comunication can be easily solved using WCF + NamedPipes + SelfHosting

Euphoric
  • 12,645
  • 1
  • 30
  • 44
  • 1
    ok thanks, but i'd like to know if it's possible to allocate memory at some fixed address that would be the same address for every time i start the application on any machine – user615741 May 03 '11 at 06:31