Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Compile and Execute C# Sharp Online

using System.IO;
using System;

class Program
{
    static void Main()
    {
         //Name
         Console.WriteLine("Charlie Lewin");
         
         //Age
         Console.WriteLine("I am 17 years old");
         
         //Gender
         Console.WriteLine("I am Male");
         
         //Location
         Console.WriteLine("I live in Leicestershire");
          
         //Family
         Console.WriteLine("I live with my Sister, Mum and Dad");
         
         //Education
         Console.WriteLine("I have education at Leicester College");
         
         //Music
         Console.WriteLine("I listen to Rap music");
         
         //Hobbies
         Console.WriteLine("I enjoy listening to music, working out and playing games");
           
           
    }
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.