May 2010
Intermediate to advanced
1272 pages
61h 18m
English
The .NET Framework Base Class Library provides lots of built-in value types that you can use according to your needs. Each value type is a structure exposed by the Base Class Library.
Visual Basic 2010 provides reserved words that are counterparts of the most common value type names. For example, the System.Int32 value type has an alias in the Integer reserved word. The following two lines of code are perfectly equivalent:
Dim anInteger As System.Int32 = 0 Dim anInteger As Integer = 0
You may use indistinctly both .NET names and the Visual Basic reserved words when referring to built-in value types.
Read now
Unlock full access