Questions tagged [ikvm]

IKVM.NET is a JVM written on the CLR, allowing you to execute Java code using the Microsoft CLR run-time or Mono.

IKVM is a implementation of using the . IKVM and its supporting libraries allow Java to be executed under .NET processes (Mono or Microsoft) and allow the compilation of Java byte code into .NET compliant files.

IKVM Implements the Java Virtual Machine and also the Java class libraries.

Project Homepage

286 questions
-2
votes
4 answers

how to convert use of VAR to explicit type in C#

I have some code that uses a class that was converted from Java with IKVM for use in .NET. So my code sample uses VAR when instantiating the class, such as: var Something = new OriginallyFromJavaClass("c:\ReadInThisFile.txt"); Then methods of…
stackonfire
  • 1,525
  • 4
  • 17
  • 23
1 2 3
19
20