Hey guys, I need a hand.

I have a dll that has a static hashtable(object collection) variable that is public. One executable loads it and instantiates the dll and sticks some objects into that hashtable. Now a second exe is supposed to instantiate the dll and with the variable being statis/shared, the second exe should get the value of the hashtable variable as it has been populated by the first exe. But unfortuantly it does not. The varaible is blank. Am I missing anything that I need to do other than make the shared?