How to insert java in c #

Could you tell me, please, how can I insert a java module / source code into a C # application? For example, I have some logic written in Java, and this logic uses some third-party libraries that can only be found on the Java platform. And I have the main host logic written in C #. It will be very cool if I can register callbacks from java in C #.

Many thanks!!!

+3
source share
1 answer

Can you try IKVM ?

IKVM.NET is useful for several software development scenarios. Here is an example of some features.

  • Drop-in JVM
  • Java .NET
  • .NET Java
+8

Source: https://habr.com/ru/post/1773187/


All Articles