- Notifications
You must be signed in to change notification settings - Fork5.2k
Simplify managed MetadataImport creation#101353
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Simplify managed MetadataImport creation#101353
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Consolidate the create mechanism for the managedMetadataImport type. This also removes someHelper Method Frame usage.
AaronRobinsonMSFT commentedApr 21, 2024
Tagging subscribers to this area:@mangod9 |
src/coreclr/System.Private.CoreLib/src/System/Reflection/MdImport.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
src/coreclr/System.Private.CoreLib/src/System/Reflection/MdImport.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
jkotas left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Thanks!
src/coreclr/System.Private.CoreLib/src/System/Reflection/RuntimeCustomAttributeData.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
…meCustomAttributeData.csCo-authored-by: Jan Kotas <jkotas@microsoft.com>
The field on the managed object can becomestale during HotReload or EnC scenarios.
* Simplify managed MetadataImport creationConsolidate the create mechanism for the managedMetadataImport type. This also removes someHelper Method Frame usage.* Always get the latest metadataimport instance.The field on the managed object can becomestale during HotReload or EnC scenarios.---------Co-authored-by: Jan Kotas <jkotas@microsoft.com>
* Simplify managed MetadataImport creationConsolidate the create mechanism for the managedMetadataImport type. This also removes someHelper Method Frame usage.* Always get the latest metadataimport instance.The field on the managed object can becomestale during HotReload or EnC scenarios.---------Co-authored-by: Jan Kotas <jkotas@microsoft.com>
Consolidate the create mechanism for the managed
MetadataImporttype. This also removes someHelper Method Frame usage.
This is follow-up to work done in#100939.