When using ikvmc to compile JAR to DLL, it generates methods and classes with funny names, like
TestClass.__<clinit>(object X);
or
TestClass$1.MethodName();
I wish to call and/or override them from the C# client. How can I achieve this without using Reflection?
Update: Not only call, but override in inherited classes too…
You must use reflection at least for creation of delegate:
There are several cases how correctly create delegates. See the MSDN reference guide: System.Delegate and the
CreateDelegatemethods.