Common Data Types

Discussion in 'C#' started by StormForum, Nov 29, 2007.

  1. #1
    Hello,

    I am reading beginning ASP.NET in VB 2005 - and I am currently on Common Data Types, page 24. there are a few data types I don't understand.

    Int64 = An integer from -9.2e18 to 9.2e18;
    Single = -3.4e38 to 3.4e38;
    Double = -1.8e308 to 1.8e308

    The thing I don't understand is what the letters inside the integer for? Any help will be greatly appreciated.

    Cheers.
     
    StormForum, Nov 29, 2007 IP
  2. speaker

    speaker Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    this is the rang of number that intger64 can hold.
    if u want the calculated number search in google: 9.2*e^18
     
    speaker, Nov 29, 2007 IP
  3. multippt

    multippt Peon

    Messages:
    176
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    "e" in this case refers to the exponential of 10 (actually, it is "E", not "e"; both are different).
    E.g. 1E6 = 1000000

    Another example:
    Int64: An integer from -9200000000000000000 to 9200000000000000000
    *Definition of Int64 by Microsoft
     
    multippt, Nov 29, 2007 IP