Skip to content

Instantly share code, notes, and snippets.

@b4rtik
Created October 23, 2020 19:26
Show Gist options
  • Save b4rtik/a3cc9cfc8fd9d797146ce650ea3f84c1 to your computer and use it in GitHub Desktop.
Save b4rtik/a3cc9cfc8fd9d797146ce650ea3f84c1 to your computer and use it in GitHub Desktop.
using System;
namespace TestParamaters
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Args length : " + args.Length);
if(args.Length > 0)
{
foreach (string s in args)
{
Console.WriteLine("Arg : " + s);
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment