Mark_Domansky
Nimbostratus
Feb 01, 2012This notation is very confusing:
$Class.get_string_class((,"img_extensions"))
What is seems you are trying to convey here is that get_string_class is expecting an array. It doesn't require an array, but will accept it. However arrays in PowerShell are denoted with the @ symbol. So these work and are generally less confusing:
$Class.get_string_class("img_extensions")
$class.get_string_class(@("img_extensions","another_class"))
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)