有关 Javascript 到 C# 转换器的帮助

发布于 2024-09-24 02:55:08 字数 1539 浏览 6 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

说好的呢 2024-10-01 02:55:08

好吧,您可以从 Javascript.Net 开始,在重写/转换之前在另一个应用程序中尝试您的代码它。无论您做什么,都不要依赖自动生成的代码来实现任何重要的算法。

如果没记错的话,实际上有一种 JavaScript 风格是在 .Net CLR 上运行的。我认为它从未流行起来。

Well, you could start with Javascript.Net to try your code within another application before rewriting/converting it. Whatever you do, don't rely on auto-generated code for an algorithm of any importance.

If memory serves, there was actually a flavor of JavaScript that ran on the .Net CLR. I don't think it ever caught on.

何处潇湘 2024-10-01 02:55:08

使用 javascript.net 或 jscript 与 .net Reflector,可能会节省你的大脑和键盘

Using javascript.net or jscript with .net Reflector, will save you brain and keyboard, may be

花间憩 2024-10-01 02:55:08

有一种称为 UnityScript 的 JavaScript 方言,可以使用 UnityScript-to-C# 转换器将其转换为 C#

我还编写了一个名为 universal-transpiler 的工具,可以将 JavaScript 的一小部分转换为 C# 和几个其他语言。

JavaScript 中的输入:

function add(a,b){
    var g = [3,4,5];
    return a+b+(g[0])+(g.length);
} 

function divide(a,b){
    return a/b;
}

通用转译器的 C# 输出:

public static int add(int a,int b){
    int[] g={3,4,5};
    return a+b+(g[0])+(g.Length);
} 

public static int divide(int a,int b){
    return a/b;
}

There is a dialect of JavaScript called UnityScript that can be converted into C# using the UnityScript-to-C# converter.

I also wrote a tool called universal-transpiler can convert a small subset of JavaScript into C# and several other languages.

Input in JavaScript:

function add(a,b){
    var g = [3,4,5];
    return a+b+(g[0])+(g.length);
} 

function divide(a,b){
    return a/b;
}

Output in C# from universal-transpiler:

public static int add(int a,int b){
    int[] g={3,4,5};
    return a+b+(g[0])+(g.Length);
} 

public static int divide(int a,int b){
    return a/b;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文