Remove OrderedDictionary usage from ReflectTypeDescriptionProvider #47473
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is showing up a bit on ASP.NET startup paths, and we can be more efficient (and simpler) in how we handle allocations and work.
As a microbenchmark, I tweaked TypeDescriptor.GetAttributes in both the original and PR bits to not cache attributes, so that the benchmark would simulate the impact on the first call per type. Then used it on types with no attributes, one attribute, and five identical attributes:
So, not a huge win, but the code gets simpler as well, and we remove one of the remaining dependencies on OrderedDictionary.