Hmmph Getting a hashtable collection from a dll
Ok this is killing me. First off this is part of a plugin system I am working on for an app i am re-writting from vb6. What is happening is that I have a dll that contains a hashtable collection that stores class instances of my socket class for each connected user to my main app. Problem is, is I need the data my main app adds to that collection in that dll, accessable from external dll plug-ins. I just cannot get this .Ive tried making the hashtable public shared, but when the plug-in tries to get the hashtable, it always comes out blank.. Basically i need something like GetObject in VB which i used to get a running instance of a dll class. What am I missing?
:confused: