Powershell,交互式调用静态方法

发布于 12-02 05:54 字数 545 浏览 1 评论 0原文

我坐在 PowerShell 命令提示符下并关注 http://technet.microsoft。 com/en-us/library/dd347632.aspx

PS C:\> [System.Math]::Sqrt (9)
Unexpected token '(' in expression or statement.
At line:1 char:22
+ [System.Math]::Sqrt ( <<<< 9)
  + CategoryInfo          : PArserError: ((:String) [], ParentContainsErrorRecordException
  + FullyQualifiedErrorId : UnexpectedToken

我是被欺骗了还是教程给了我一些有语法错误的东西?

我如何做一些基本的事情,比如调用静态方法?

I'm sitting at a PowerShell command prompt and following http://technet.microsoft.com/en-us/library/dd347632.aspx

PS C:\> [System.Math]::Sqrt (9)
Unexpected token '(' in expression or statement.
At line:1 char:22
+ [System.Math]::Sqrt ( <<<< 9)
  + CategoryInfo          : PArserError: ((:String) [], ParentContainsErrorRecordException
  + FullyQualifiedErrorId : UnexpectedToken

Am I being tricked or did the tutorial give me something that has a syntax error?

How do I do a basic thing like invoke a static method?

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

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

发布评论

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

评论(1

那请放手2024-12-09 05:54:13

Sqrt 后不要有空格:

[System.Math]::Sqrt(9)

Don't have the space after Sqrt:

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