Data Types C#

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