StringConstantType Enum

Definition

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. "some text".

DoubleQuotedHereString 3

A here string enclosed in double quotes, e.g. @" a here string "@

SingleQuoted 0

A string enclosed in single quotes, e.g. 'some text'.

SingleQuotedHereString 1

A here string enclosed in single quotes, e.g. @' a here string '@

Applies to