Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve LoadAll performance #2

Open
forrestthewoods opened this issue Sep 1, 2019 · 1 comment
Open

Improve LoadAll performance #2

forrestthewoods opened this issue Sep 1, 2019 · 1 comment

Comments

@forrestthewoods
Copy link
Owner

LoadAll currently looks roughly like the following:

foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies()) {
  foreach (var type in assembly.GetTypes()) {
    foreach (var field in type.GetFields() {
      // Do stuff
    }
  }
}

Instead of checking all assemblies it might be better to only check Assembly-CSharp. That would likely work in most cases. But the current code should work in all cases.

I'm open to suggestions on how to improve this. I'm not actually sure it matters. It'd be useful to have benchmark numbers for a large project.

@dyeo
Copy link

dyeo commented Jul 28, 2021

Would also need to check Assembly-CSharp-Firstpass

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants