What is the name of the character at the end of each of these lines?

Dim _int As Integer = 1I
Dim _short As Short = 1S
Dim _long As Long = 1L
Dim _single As Single = 1.0F
Dim _double As Decimal = 1D

I've always called these "type specifiers". I assume that's incorrect as I'm unable to find the official documentation using this term. I would like to know what others are available but can't find the right term to use in my search.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

According to the documentation in VB.NET they are called "literal type characters". See the section on "forced literal types".

link|improve this answer
1  
I marked this as the accepted answer because my code example was VB not C#. – Seth Reno Jul 27 '10 at 18:22
feedback

It's called a type suffix.

link|improve this answer
seems so obvious now :) – Seth Reno Jul 27 '10 at 18:14
2  
Thanks @Jon, was looking for it but couldn't find it. – Fredrik Mörk Jul 27 '10 at 18:24
feedback

According to MSDN in C# are called: Type suffix

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.