AsyncServerForm.SwarmMemory.SwarmMemory C# (CSharp) Method

SwarmMemory() public method

public SwarmMemory ( string _Pid, string myIPPort ) : System
_Pid string
myIPPort string
return System
        public SwarmMemory(string _Pid, string myIPPort)
        {
            Reply = new Hashtable();
            programStack = new Stack<string>();//Stack object for the program
            partialResults = new Hashtable();//result table
            programVariables = new Hashtable();//variable-value pairs
            permissions = new Hashtable();
            IPPort_toCode = new Hashtable();
            Pid = _Pid;
            string[] temp = { "true", "true"};
            permissions.Add(myIPPort, temp);
           
        }
        public Hashtable getPartialResults()