protected override void CoreExecute(ref Result _result)
        {
            Process debugee = Process.GetProcessById((int)m_ProcessID);
            ICorDebug icorDebug = CLRHelperMethods.GetDebugger(debugee.Handle);
            icorDebug.Initialize();
            MProcess mprocess = new MProcess(m_ProcessID);
            ManagedCallback callback = new ManagedCallback(mprocess.Listner);
            icorDebug.SetManagedHandler(callback);
            ICorDebugProcess iCorProcess = null;
            icorDebug.DebugActiveProcess(m_ProcessID, 0, out iCorProcess);
            if (iCorProcess != null) {
                mprocess.SetDebugProcess(iCorProcess);
                //mprocess.Continue();
                _result.CommadStatus = true;
                _result.Description = "Process " + m_ProcessID + " Attached";

            }
            //Just to complete the Attach process completetly .
            //This a need to be fixed.
            Thread.Sleep(2000);
        }