Int Parsing : Int parse : Data Type C# Examples


C# Examples » Data Type » Int parse »

 

Int Parsing









    
using  System;

class  MainClass
{
        public  static  void  Main()
        {
                int  value  =  Int32.Parse("99953");
                Console.WriteLine("{0}",  value);
        }
}
    
   
  
   



Output

99953


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Type
» Int parse