Can the same DLL data be shared by 2 different processes ?

Posted by Jelly Amma on Stack Overflow See other posts from Stack Overflow or by Jelly Amma
Published on 2010-06-02T17:23:29Z Indexed on 2010/06/03 2:54 UTC
Read the original article Hit count: 241

Filed under:
|
|
|

I have two different C# applications that are running at the same time.

I would like both of them to be able to access the same "instance" of a DLL (also in C#).

The DLL holds some data that I'd like to return to whichever of the two applications is asking for it.

My DLL is thread-safe so I was hoping this would be possible but I'm not sure how.

Any help or advice would be much appreciated.

© Stack Overflow or respective owner

Related posts about c#

Related posts about dll