DarkNotes icon indicating copy to clipboard operation
DarkNotes copied to clipboard

An interop library that uses Java Native Interface (JNI) to load a Java VM inside a .NET executable and expose Java objects as dynamic (DLR) objects so you can call easily Java code within .NET withou...

Results 5 DarkNotes issues
Sort by recently updated
recently updated
newest added

I have the following code that runs successfully. class Program { static void Main(string[] args) { using (dynamic java = CreateVm()) { dynamic s = java.String.@new("Hello"); dynamic writer = java.DemoCalc.@new();...

Hello I found it looks wrong path to Java_Home because `server\jvm.dll` found from `jre-xxx\bin\server\jvm.dll ` That is why it doesn't see for JAVA_HOME because JAVA_HOME has not directories server in...

Hi, Thanks for sharing the lib with us. Could you post a small sample of a method call in Java from .Net ? Thanks!

I am not able to execute my code with DarkNotes. Running the same code multiple times results in one of the following: - A field which is guaranteed to be...