TypeCharacter Enum

Definition

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

Decimal 3

The "@" type character."

DecimalLiteral 15

The "D" literal suffix denoting "Decimal"

Double 5

The "#" type character."

DoubleLiteral 14

The "R" literal suffix denoting "Double"

Integer 1

The "%" type character."

IntegerLiteral 9

The "I" literal suffix denoting "Integer"

Long 2

The "&" type character."

LongLiteral 11

The "L" literal suffix denoting "Long"

None 0
ShortLiteral 7

The "S" literal suffix denoting "Short"

Single 4

The "!" type character."

SingleLiteral 13

The "F" literal suffix denoting "Single"

String 6

The "$" type character."

UIntegerLiteral 10

The "UI" literal suffix denoting "UInteger"

ULongLiteral 12

The "UL" literal suffix denoting "ULong"

UShortLiteral 8

The "US" literal suffix denoting "UShort"

Applies to