Simple Type Converstion

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Christopher Weaver

    Simple Type Converstion

    How does one convert a string to an int.



  • Alan Pretre

    #2
    Re: Simple Type Converstion

    "Christophe r Weaver" <we.aver@verizo n.net> wrote in message
    news:%233HYaSnV FHA.1328@tk2msf tngp13.phx.gbl. ..[color=blue]
    > How does one convert a string to an int.[/color]

    System.Convert. ToInt32(Str);

    -- Alan


    Comment

    • Christopher Weaver

      #3
      Re: Simple Type Converstion

      Thanks.


      "Alan Pretre" <alanpretre@new sgroup.nospam> wrote in message
      news:ufX5uYnVFH A.2128@TK2MSFTN GP15.phx.gbl...[color=blue]
      > "Christophe r Weaver" <we.aver@verizo n.net> wrote in message
      > news:%233HYaSnV FHA.1328@tk2msf tngp13.phx.gbl. ..[color=green]
      >> How does one convert a string to an int.[/color]
      >
      > System.Convert. ToInt32(Str);
      >
      > -- Alan
      >
      >[/color]


      Comment

      Working...