I’m confused about parameter and argument in powershell. can you help me explain what is difference between param and arg ?
Thanks.
I’m confused about parameter and argument in powershell. can you help me explain what
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Traditionally in programming languages, parameter defines the inputs to a function where the function is declared. Arguments are the values supplied when calling the function. The argument values map to the function parameters. You can read more about this on Wikipedia.