InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml) ASP.Net TOCASP.NetMiscellaneous Feature ASP.NET Scripting Visual Basic .NET TOCVB .NET Language Referencena VB.Net KeywordsVB.Net DataVB.Net Declared ElementVB.Net DelegatesVB.Net Object CharacteristicsVB.Net EventsVB.Net InterfacesVB.Net LINQVB.Net Object and ClassVB.Net Operators and ExpressionsVB.Net ProceduresVB.Net StatementsVB.Net StringsVB.Net XMLConstants and LiteralsVB .NET Enumerations Data TypesObject, String, User-DefinedBoolean, Char, Date DecimalByte, UShort, UInteger, ULong Draft for Information Only
Content
VB.NET Data Types
VB.NET Data TypesThe supporting VB.NET data types can be divided into
SByte Data TypeHolds signed 8-bit (1-byte) integers that range in value from -128 through 127. RemarksUse the SByte data type to contain integer values that do not require the full data width of Integer or even the half data width of Short. In some cases, the common language runtime might be able to pack your SByte variables closely together and save memory consumption. The default value of SByte is 0. Literal assignmentsYou can declare and initialize an SByte variable by assigning it a decimal literal, a hexadecimal literal, an octal literal, or (starting with Visual Basic 2017) a binary literal. Note You use the prefix &h or &H to denote a hexadecimal literal, the prefix &b or &B to denote a binary literal, and the prefix &o or &O to denote an octal literal. Decimal literals have no prefix. Starting with Visual Basic 2017, you can also use the underscore character, _, as a digit separator to enhance readability. Starting with Visual Basic 15.5, you can also use the underscore character (_) as a leading separator between the prefix and the hexadecimal, binary, or octal digits. To use the underscore character as a leading separator, you must add the following element to your Visual Basic project (*.vbproj) file:
XML
<PropertyGroup> <LangVersion>15.5</LangVersion> </PropertyGroup> For more information see setting the Visual Basic language version. If the integer literal is outside the range of SByte (that is, if it is less than SByte.MinValue or greater than SByte.MaxValue, a compilation error occurs. When an integer literal has no suffix, an Integer is inferred. If the integer literal is outside the range of the Integer type, a Long is inferred. This means that, in the previous examples, the numeric literals 0x9A and 0b10011010 are interpreted as 32-bit signed integers with a value of 156, which exceeds SByte.MaxValue. To successfully compile code like this that assigns a non-decimal integer to an SByte, you can do either of the following:
Programming tips
See also
Short data typeHolds signed 16-bit (2-byte) integers that range in value from -32,768 through 32,767. RemarksUse the Short data type to contain integer values that do not require the full data width of Integer. In some cases, the common language runtime can pack your Short variables closely together and save memory consumption. The default value of Short is 0. Literal assignmentsYou can declare and initialize a Short variable by assigning it a decimal literal, a hexadecimal literal, an octal literal, or (starting with Visual Basic 2017) a binary literal. If the integer literal is outside the range of Short (that is, if it is less than Int16.MinValue or greater than Int16.MaxValue, a compilation error occurs. Note You use the prefix &h or &H to denote a hexadecimal literal, the prefix &b or &B to denote a binary literal, and the prefix &o or &O to denote an octal literal. Decimal literals have no prefix. Starting with Visual Basic 2017, you can also use the underscore character, _, as a digit separator to enhance readability. Starting with Visual Basic 15.5, you can also use the underscore character (_) as a leading separator between the prefix and the hexadecimal, binary, or octal digits. To use the underscore character as a leading separator, you must add the following element to your Visual Basic project (*.vbproj) file:
XML
<PropertyGroup> <LangVersion>15.5</LangVersion> </PropertyGroup>
For more information see setting the Visual Basic language version. Numeric literals can also include the S type character to denote the Short data type. Programming tips
See also
Integer data typeHolds signed 32-bit (4-byte) integers that range in value from -2,147,483,648 through 2,147,483,647. RemarksThe Integer data type provides optimal performance on a 32-bit processor. The other integral types are slower to load and store from and to memory. The default value of Integer is 0. Literal assignmentsYou can declare and initialize an Integer variable by assigning it a decimal literal, a hexadecimal literal, an octal literal, or (starting with Visual Basic 2017) a binary literal. If the integer literal is outside the range of Integer (that is, if it is less than Int32.MinValue or greater than Int32.MaxValue, a compilation error occurs. Note You use the prefix &h or &H to denote a hexadecimal literal, the prefix &b or &B to denote a binary literal, and the prefix &o or &O to denote an octal literal. Decimal literals have no prefix. Starting with Visual Basic 2017, you can also use the underscore character, _, as a digit separator to enhance readability. Starting with Visual Basic 15.5, you can also use the underscore character (_) as a leading separator between the prefix and the hexadecimal, binary, or octal digits. To use the underscore character as a leading separator, you must add the following element to your Visual Basic project (*.vbproj) file:
XML
<PropertyGroup> <LangVersion>15.5</LangVersion> </PropertyGroup> For more information see setting the Visual Basic language version. Numeric literals can also include the I type character to denote the Integer data type. Programming tips
RangeIf you try to set a variable of an integral type to a number outside the range for that type, an error occurs. If you try to set it to a fraction, the number is rounded up or down to the nearest integer value. If the number is equally close to two integer values, the value is rounded to the nearest even integer. This behavior minimizes rounding errors that result from consistently rounding a midpoint value in a single direction. See also
Long data typeHolds signed 64-bit (8-byte) integers ranging in value from -9,223,372,036,854,775,808 through 9,223,372,036,854,775,807 (9.2...E+18). RemarksUse the Long data type to contain integer numbers that are too large to fit in the Integer data type. The default value of Long is 0. Literal assignmentsYou can declare and initialize a Long variable by assigning it a decimal literal, a hexadecimal literal, an octal literal, or (starting with Visual Basic 2017) a binary literal. If the integer literal is outside the range of Long (that is, if it is less than Int64.MinValue or greater than Int64.MaxValue, a compilation error occurs. Note You use the prefix &h or &H to denote a hexadecimal literal, the prefix &b or &B to denote a binary literal, and the prefix &o or &O to denote an octal literal. Decimal literals have no prefix. Starting with Visual Basic 2017, you can also use the underscore character, _, as a digit separator to enhance readability. Starting with Visual Basic 15.5, you can also use the underscore character (_) as a leading separator between the prefix and the hexadecimal, binary, or octal digits. To use the underscore character as a leading separator, you must add the following element to your Visual Basic project (*.vbproj) file:
XML
<PropertyGroup> <LangVersion>15.5</LangVersion> </PropertyGroup> For more information see setting the Visual Basic language version. Numeric literals can also include the L type character to denote the Long data type. Programming tips
See also
Source/Reference
©sideway ID: 200700028 Last Updated: 7/28/2020 Revision: 0 Ref: ![]() References
![]() Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019