单声道,shell 脚本?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要较新版本的 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.