作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 PowerShell(1.0 或 2.0)中注释掉代码?
最佳答案
在 PowerShell V1 中只有 #
使其后面的文本成为注释。
# This is a comment in PowerShell
在 PowerShell V2 中 <# #>
可用于 block 注释,更具体地说,可用于帮助注释。
#REQUIRES -Version 2.0
<#
.SYNOPSIS
A brief description of the function or script. This keyword can be used
only once in each topic.
.DESCRIPTION
A detailed description of the function or script. This keyword can be
used only once in each topic.
.NOTES
File Name : xxxx.ps1
Author : J.P. Blanc (jean-paul_blanc@silogix-fr.com)
Prerequisite : PowerShell V2 over Vista and upper.
Copyright 2011 - Jean Paul Blanc/Silogix
.LINK
Script posted over:
http://silogix.fr
.EXAMPLE
Example 1
.EXAMPLE
Example 2
#>
Function blabla
{}
有关 .SYNOPSIS
的更多说明和.*
请参阅about_Comment_Based_Help .
备注:这些函数注释由 Get-Help
使用CmdLet 和 可以放在关键字 Function
之前,或在 {}
内在代码本身之前或之后。
关于powershell - 如何在 PowerShell 中注释掉代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7342597/
我正在编写一个快速的 preg_replace 来从 CSS 中删除注释。 CSS 注释通常有这样的语法: /* Development Classes*/ /* Un-comment me for
使用 MySQL,我有三个表: 项目: ID name 1 "birthday party" 2 "soccer match" 3 "wine tasting evening" 4
我是一名优秀的程序员,十分优秀!