Questions tagged «powershell»

5
有众所周知的PowerShell编码约定吗?
在PowerShell中编程时是否有任何定义明确的约定? 例如,在要长期维护的脚本中,我们是否需要: 使用真实的cmdlet名称还是别名? 完整或部分指定cmdlet参数名称(dir -Recurse与相对dir -r) 在为cmdlet指定字符串参数时,是否将它们括在引号(New-Object 'System.Int32'与New-Object System.Int32 在编写函数和过滤器时,是否指定参数的类型? 您是否在(正式)正确的情况下编写cmdlet? 对于像BEGIN...PROCESS...END这样的关键字,您仅将它们写为大写吗? 似乎MSDN缺少用于PowerShell的编码约定文档,而对于C#,则存在这样的文档。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.