language: C# (mono-2.8)
date: 104 days 10 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*Program Name:HelloWorld,
        Creator:Michael
                Program Use:This program pretty much just writes out whatever you want. */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{
    class HelloWorld
    {
        static void Main(string[] args)
        {
            Console.Out.WriteLine("I am a C# Program");
            Console.In.ReadLine();
//This command (//) is to write comments for other coders to read
        }
    }
}