convert string to int

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chi Tang

    convert string to int

    Hi,

    Is there any function in C# to convert a string to a integer number like
    'atoi()' function? Thanks,

    CT


  • Jason Turim

    #2
    Re: convert string to int

    System.Convert. ToInt32(sNumber , 10);

    "Chi Tang" <chikuotang@hot mail.com> wrote in message
    news:e0Cv3T%23S DHA.1868@TK2MSF TNGP11.phx.gbl. ..[color=blue]
    > Hi,
    >
    > Is there any function in C# to convert a string to a integer number like
    > 'atoi()' function? Thanks,
    >
    > CT
    >
    >[/color]


    Comment

    • Noah Coad [.NET/C# MVP]

      #3
      Re: convert string to int

      int x = Int.Parse("23") ;

      -Noah Coad
      Microsoft MVP & MCP [.NET/C#]


      "Chi Tang" <chikuotang@hot mail.com> wrote in message
      news:e0Cv3T%23S DHA.1868@TK2MSF TNGP11.phx.gbl. ..[color=blue]
      > Hi,
      >
      > Is there any function in C# to convert a string to a integer number like
      > 'atoi()' function? Thanks,
      >
      > CT
      >
      >[/color]


      Comment

      Working...