Answers for "powershell switch statement"

2

powershell switch statement

switch(<test-value>) {
   <condition> {<action>} 
      break; // optional
   <condition> {<action>} 
      break; // optional
   <condition> {<action>} 
      break; // optional
}
Posted by: Guest on September-25-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language