Internal CLR Error on .NET 7-windows
After force recompiling a method (without replacing it or anything) subsequent calls to the method throw access violation exception
Hello,
It's x86, x64 or ARM64?
Can you detail more about the method you tried to recompile? Signature or something like:
class MyClass {
//Is implementation from some interface or abstract class?
public [virtual|abstract|override] [void|T|int|...] MyMethod[<T>](){
//...
}
}
Hi, windows x64
its abstract class with this method signature
private void Method(AnotherClass arg1)
Method has a body in the abstract class, not overrided
Hi, windows x64 its abstract class with this method signature
private void Method(AnotherClass arg1)Method has a body in the abstract class, not overrided
Thanks for the info!
I was able to reproduce the issue and have already fixed it.
I'll run some additional tests and release a preview version for 7.0.0 on next week that includes this fix.