单声道,shell 脚本?

发布于 2024-12-19 11:31:52 字数 418 浏览 0 评论 0原文

csharp(版本 Mono C# 编译器版本 4.0.0.0)允许编写 C# 脚本,例如

#!/usr/bin/csharp

Console.WriteLine( "Hello world !" );

我尝试添加 main() 函数,但出现解析错误,例如

{interactive}(1,9): error CS1525: Unexpected symbol `(', expecting `,', `;', or `='

是否有关于此脚本的文档?

它允许使用函数吗?

csharp ( version Mono C# compiler version 4.0.0.0) allow to write C# scripts, like

#!/usr/bin/csharp

Console.WriteLine( "Hello world !" );

I tried to add a main() function, but got parsing errors, like

{interactive}(1,9): error CS1525: Unexpected symbol `(', expecting `,', `;', or `='

Are there docs about this scripting ?

Does it allow use of functions?

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

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

发布评论

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

评论(1

无可置疑 2024-12-26 11:31:52

您需要较新版本的 mono/csharp:要么等待 mono 2.11.x/2.12.x 的新版本,要么从 git 自行编译。这允许您交互地定义类。

You need a newer version of mono/csharp: either wait for a new release of mono 2.11.x/2.12.x or compile it yourself from git. That allows you to define classes interactively.

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