1

I'm trying to build a hashtable in my script. Input is a parameter:

Param
(
[hashtable]$param
)

calling my function: Foobar -Param 'Key, value' does not work. Also tried:

Foobar -Param 'Key' = 'Value';
Foobar -Param Key Value

Error returned: Cannot convert value of type "System.String" to type "System.Collections.Hashtable".

How do I pass the arguments correctly?

1 Answer 1

1

Use a hashtable literal @{}:

Foobar -Param @{ Key = 'Value' }
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.