TypeCharacter 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.
Represents one of the type characters or literal suffixes of VB. Used to describe a) the type character suffixes that can be placed on identifiers, and b) the suffixes that can be placed on integer literals.
public enum class TypeCharacter
public enum TypeCharacter
type TypeCharacter =
Public Enum TypeCharacter
- Inheritance
-
TypeCharacter
Fields
Name | Value | Description |
---|---|---|
None | 0 | |
Integer | 1 | The "%" type character." |
Long | 2 | The "&" type character." |
Decimal | 3 | The "@" type character." |
Single | 4 | The "!" type character." |
Double | 5 | The "#" type character." |
String | 6 | The "$" type character." |
ShortLiteral | 7 | The "S" literal suffix denoting "Short" |
UShortLiteral | 8 | The "US" literal suffix denoting "UShort" |
IntegerLiteral | 9 | The "I" literal suffix denoting "Integer" |
UIntegerLiteral | 10 | The "UI" literal suffix denoting "UInteger" |
LongLiteral | 11 | The "L" literal suffix denoting "Long" |
ULongLiteral | 12 | The "UL" literal suffix denoting "ULong" |
SingleLiteral | 13 | The "F" literal suffix denoting "Single" |
DoubleLiteral | 14 | The "R" literal suffix denoting "Double" |
DecimalLiteral | 15 | The "D" literal suffix denoting "Decimal" |