views:

185

answers:

1

These days, many projects have started their life written in Java. Some of them are eventually converted to C# for incorporation in .NET. Examples that come to mind are log4net, nhibernate and db4o.

Including sharpen (which is db4o's tool) have you seen and/or used any tools that make continual conversion manageable. I'd go so far as to say anything that requires more than about a 2 month slip from the original product release isn't really all that useful for continual conversion.

+1  A: 

Use IKvm

IKVM.NET is an implementation of Java for Mono and the Microsoft .NET Framework. It includes the following components:

* A Java Virtual Machine implemented in .NET
* A .NET implementation of the Java class libraries
* Tools that enable Java and .NET interoperability
david valentine
IKVM does not _convert_ the projects to C#, but allows them to run on the .NET runtime instead of a JVM.
Thorbjørn Ravn Andersen