Skip to content

Instantly share code, notes, and snippets.

@cmlad
Created October 24, 2016 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmlad/7608999b1507db8ad562c36ba137bf88 to your computer and use it in GitHub Desktop.
Save cmlad/7608999b1507db8ad562c36ba137bf88 to your computer and use it in GitHub Desktop.
DotNet test
// arguments: A B C D
using System;
public class Hello3
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
Console.WriteLine("You entered the following {0} command line arguments:",
args.Length );
for (int i=0; i < args.Length; i++)
{
Console.WriteLine("{0}", args[i]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment