我创建了一个C#项目和一个DLL。我使用此命令从C#dll.ikvmstub c:\ myc#.dll生成Java jar文件。这是我需要使用IKVM从java调用的C#类
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
namespace test
{
public class test
{
public test()
{
}
public String printHellowfromC#()
{
return "hellow from C#";
}
}
}
答案 0 :(得分:0)
IKVM正在使用C#来使用java。它的页面上描述了“IKVM.NET是Mono和Microsoft .NET Framework的Java实现”。从java调用C#类不需要IKVM。您可以从C#构建本机dll并直接从java调用它。