在 PowerShell中是否有类似内置的IsNullOrEmpty函数来检查字符串是否为空或空?
IsNullOrEmpty
到目前为止我找不到它,如果有内置方法,我不想为此编写函数。
您可以使用IsNullOrEmpty静态方法:
[string]::IsNullOrEmpty(...)