We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c41fcef commit 51b39cfCopy full SHA for 51b39cf
src/tests/Regressions/coreclr/GitHub_115667/test115667.cs
@@ -26,7 +26,7 @@ public static void TestEntryPoint()
26
{
27
System.Runtime.Loader.AssemblyLoadContext alc = new CollectibleALC();
28
System.Reflection.Assembly asm = alc.LoadFromAssemblyPath(System.Reflection.Assembly.GetExecutingAssembly().Location);
29
- System.Reflection.MethodInfo mi = asm.GetType(typeof(Program).FullName).GetMethod(nameof(MainInner));
+ System.Reflection.MethodInfo mi = asm.GetType(typeof(Runtime_115667).FullName).GetMethod(nameof(MainInner));
30
System.Type runtimeTy = asm.GetType(typeof(Runtime).FullName);
31
mi.Invoke(null, new object[] { System.Activator.CreateInstance(runtimeTy) });
32
}
0 commit comments