//This need to be called in Process Creaded notification
 public static void SetStateObj(ICorDebugController value)
 {
     if (stateObj != null) { throw new Exception("Already initialized"); }
     stateObj = new ControllerStateObject(value);
 }
 public static void ReleaseStateObj()
 {
     stateObj = null;
 }