有没有办法将打字稿定义转换为C#,以便在Bridge中使用?

时间:2016-10-01 20:45:27

标签: c# typescript cross-compiling

有没有办法将打字稿定义转换为C#,以便在Bridge中使用?

如果我有:

class L
{
    value():string;
}

它将转换为:

class L
{
    public string Value ();
}

2 个答案:

答案 0 :(得分:3)

  

有没有办法将打字稿定义转换为C#

这是TypeScript团队的非目标,因此任何解决方案都必须来自社区。快速搜索可以准确显示您的要求:https://github.com/michaelcheers/TypeScriptToCS

答案 1 :(得分:1)

你可以试试 TypedocConverter,它可以用作 TypeScript 到 C# 的转换器。

https://github.com/hez2010/TypedocConverter