Skip to content

Commit

Permalink
Fix lookup namespace for MethodInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
ds5678 authored and gompoc committed Dec 24, 2024
1 parent a8f901b commit 59a1e51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public static void CacheNeededTypeDefinitions()
Type = AsmResolverUtils.TryLookupTypeDefKnownNotGeneric("System.Type")!;
TypedReference = AsmResolverUtils.TryLookupTypeDefKnownNotGeneric("System.TypedReference")!;
IConvertible = AsmResolverUtils.TryLookupTypeDefKnownNotGeneric("System.IConvertible")!;
MethodInfo = AsmResolverUtils.TryLookupTypeDefKnownNotGeneric("System.MethodInfo")!;
MethodInfo = AsmResolverUtils.TryLookupTypeDefKnownNotGeneric("System.Reflection.MethodInfo")!;


_primitiveTypeMappings = new Dictionary<string, TypeDefinition>
Expand Down

0 comments on commit 59a1e51

Please sign in to comment.