int.Parse

image_pdfimage_print
   
  

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);
    }
}

   
     


This entry was posted in Data Types. Bookmark the permalink.