Do I need to Convert with Convert.ToInt32(session("myNumber")) ?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Do I need to Convert with Convert.ToInt32(session("myNumber")) ?

    Hello,
    I have this

    session("myNumber") = 888
    Dim intNumber As Integer

    a) intNumber = session("myNumber")
    b) intNumber = Convert.ToInt32(session("myNumber"))


    What has better performance and what should I do?

    Thanks,
    Andreas


    Andreas Klemt Guest

  2. Similar Questions and Discussions

    1. convert XML "values" to be passed as CDATA into Flash
      Hello all, I found the following XML - Flash quiz template on the net and I was wondering how can I adapt the XML doc to pass CDATA instead of...
    2. How to "Convert To Template" in custom control
      OK, so I think for my last post, what I really want to do is implement my own "Convert to Template" which will create my own template. Could...
    3. Stop popup " do you wish to convert existing data"
      I cannot stand that Freehand 10 gives me a popup box asking "do you wish to convert the existing date on the clipboard before existing?" everytime I...
    4. AI CS does not "Convert to Working Space"
      I have several hundred AI 10 files that I want to convert to CS. The AI 10 files have no embedded ICC Profile, but the AI CS files will all have...
    5. convert visual basic "string" data type to DB2 "blob"
      Does anyone know if a visual basic string data type can be converted to DB2 blob datatype? I have all data in XML files and I use Visual Basic to...
  3. #2

    Default Re: Do I need to Convert with Convert.ToInt32(session("myNumber")) ?

    You are clearly not programming with Option Strict on. You should turn it
    on and then you wouldn't have a choice but to select the most performant and
    safest method.

    b) Explicietly converting is the best way to do it, spefically from a
    perfromance point of view...otherwise you are late-binding...which is bad.

    Alternative (and better) ways to write b) would be using cint() or
    DirectCast...both of which should be faster than Convert.ToInt32 and are
    recommeded by Microsoft. You should always explicetly convert. Session,
    Application, Context, DataReader and DataRow objects are all great examples
    of places that return object, but you are likely implicetly assigning to
    ints or strings.

    Also, some error handling would be nice ,no?

    dim intNumber as integer
    try
    intNumber = cint(session("myNumber"))
    catch ex as FormatException
    'maybe you wanna redirect? Maybe you wanna set a default value
    catch ex as OverflowException
    'maybe you wanna redirect? Maybe you wanna set a default value
    end try

    Karl


    "Andreas Klemt" <aklemt68@hotmail.com> wrote in message
    news:ujlU9nSUDHA.2008@TK2MSFTNGP11.phx.gbl...
    > Hello,
    > I have this
    >
    > session("myNumber") = 888
    > Dim intNumber As Integer
    >
    > a) intNumber = session("myNumber")
    > b) intNumber = Convert.ToInt32(session("myNumber"))
    >
    >
    > What has better performance and what should I do?
    >
    > Thanks,
    > Andreas
    >
    >

    Karl Seguin Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139