我需要从c ++代码中生成C#代码。
我只需要提取类和函数并输入notimplementedexception。我想要的例子如下:
C ++:
namespace TestNamespace
{
public class TestClass
{
private:
TestMethodA();
public:
TestMethodB(int i);
}
}
到c#
namespace TestNamespace
{
public class TestClass
{
private void TestMethodA()
{
throw new NotImplementedException()
}
public bool TestMethodB(int i)
{
throw new NotImplementedException()
}
}
}
有没有可用于生成此工具的工具?谢谢!