public static SosController loadSoS(this SosController sosController)
        {
            var clr2 = clr.clr2();
            var x64  = clr.x64();

            return(sosController.loadSoS(clr2, x64));
        }
        public static SosController attach(this SosController sosController, int processId)
        {
            "[SosController] attaching to process with ID: {0}".info(processId);
            sosController.loadSettings();
            sosController.AttachToProcess(processId.str());

            sosController.loadSoS();
            return(sosController);
        }