Is there a built-in IsNullOrEmpty-like function in order to check if a string is null or empty, in PowerShell?
IsNullOrEmpty
I could not find it so far and if there i
You can use the IsNullOrEmpty static method:
[string]::IsNullOrEmpty(...)