StringConstantType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The kind of string constant.
public enum class StringConstantType
public enum StringConstantType
type StringConstantType =
Public Enum StringConstantType
- Inheritance
-
StringConstantType
Fields
BareWord | 4 | A string like token not enclosed in any quotes. This usually includes a command name or command argument. |
DoubleQuoted | 2 | A string enclosed in double quotes, e.g. |
DoubleQuotedHereString | 3 | A here string enclosed in double quotes, e.g. |
SingleQuoted | 0 | A string enclosed in single quotes, e.g. |
SingleQuotedHereString | 1 | A here string enclosed in single quotes, e.g. |