小编典典

如何在 PowerShell 中注释掉代码?

all

如何在 PowerShell (1.0 或 2.0)中注释掉代码?


阅读 164

收藏
2022-02-28

共1个答案

小编典典

在 PowerShell V1 中,只能#将其后的文本设为注释。

# This is a comment in PowerShell

在 PowerShell V2<# #>中,可用于块注释,更具体地说,可用于帮助注释。

#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-HelpCmdLet 使用,可以放在关键字之前,也可以放在代码本身Function的前面或后面。{}

2022-02-28