Example #1
0
 /// <summary>
 /// This would be nice if we could Parallel.Task it
 /// </summary>
 public void CompileAllSymbolInfo()
 {
     foreach (var mod in LoadedModules)
     {
         if (!mod.DllPath.ToLower().Contains("ehtrace"))
         {
             Sym.ListAllSymbols.Concat(SymCtx.EnumSymsInFileWithVAOrder(mod.DllPath, mod.Address, mod.Length));
         }
     }
 }