int.Parse : Parse : Data Types C# Source Code


Custom Search

C# Source Code » Data Types » Parse »

 

int.Parse








    
 

using System;
using System.Collections.Generic;
using System.Text;

class Program {
    static void Main(string[] args) {
        int myInt = int.Parse("8");
        Console.WriteLine("-> Value of myInt: {0}", myInt);
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Data Types
» Parse