public static ModuleInfo[] GetModuleInfos(int processId)
 {
     if (IsNt)
     {
         return(NtProcessManager.GetModuleInfos(processId));
     }
     return(WinProcessManager.GetModuleInfos(processId));
 }