Apr 15, 2003 #1 rwbean86 Programmer Sep 11, 2002 12 US Does .NET allow shared memory across processes? Does the FCL have any functionality for this or do I have to use API calls in PInvoke?
Does .NET allow shared memory across processes? Does the FCL have any functionality for this or do I have to use API calls in PInvoke?
Apr 16, 2003 #2 azarc Programmer Apr 14, 2003 12 US I am not entirley sure but the AppDomain class may be of use. The SetData and GetData methods allow you to store values for access within the same AppDomain. AppDomains can have multiple processes. Aaron Upvote 0 Downvote
I am not entirley sure but the AppDomain class may be of use. The SetData and GetData methods allow you to store values for access within the same AppDomain. AppDomains can have multiple processes. Aaron