else (Windows CE 5.0)

Send Feedback

This command indicates an unconditional alternative in an if statement.

else

Parameters

None.

Remarks

The following code example uses the else command to decide which message to output:

if string "%CCA_CURRENTLANGUAGE%" == "en-US"
  echo "Hello World"
elseif string "%CCA_CURRENTLANGUAGE%" == "fr-CA"
  echo "Bonjour le Monde"
else
  echo "Hello"
endif

See Also

Conditional Expressions

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.