Skip to content

Instantly share code, notes, and snippets.

@rruntsch
Created September 20, 2021 20:33
Show Gist options
  • Save rruntsch/c19aa646e27910391ceca03ef96c666e to your computer and use it in GitHub Desktop.
Save rruntsch/c19aa646e27910391ceca03ef96c666e to your computer and use it in GitHub Desktop.
using System;
/* This program writes "Hello world!" to the console window.
It also demonstrates the use of multi-line comments. */
namespace CommentMulti
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!"); /* This multi-line style of comments can reside on a single-line, too. */
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment