Skip to content

Instantly share code, notes, and snippets.

@kevingosse
Created February 1, 2019 12:46
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 kevingosse/dd6f9e1d24a25d67898fc340247e5885 to your computer and use it in GitHub Desktop.
Save kevingosse/dd6f9e1d24a25d67898fc340247e5885 to your computer and use it in GitHub Desktop.
public void PrintArgs(params string[] args)
{
foreach (var arg in args)
{
Console.WriteLine(arg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment