A Modest Proposal about PowerShell Strings
If you’ve used the PowerShell Script Analyzer before you are probably aware that you shouldn’t be using double-quoted strings if there aren’t any escape characters, variables, or subexpressions in them. The analyzer will flag unnecessary double-quotes as problems. That is because double-quoted strings are essentially expressions that PowerShell needs to evaluate. Let me repeat that… Double-quoted …
Continue reading ‘A Modest Proposal about PowerShell Strings’ »