Java Classes To C# Classes
If I got a Java class in compiled format, is there a tool that can convert the class for me into a C# class? e.g. take the class, interface, enum etc and write it in开发者_StackOverflow社区 C# with the same method signatures, same OOP inheritance etc. Just leave the gabs open for me to complete the implementation.
IKVM.NET Bytecode Compiler (ikvmc.exe):
The ikvmc tool converts Java bytecode to .NET dll's and exe's
精彩评论