Skip to content

Instantly share code, notes, and snippets.

@dkalamari
Created May 27, 2013 07:39
Show Gist options
  • Select an option

  • Save dkalamari/5655665 to your computer and use it in GitHub Desktop.

Select an option

Save dkalamari/5655665 to your computer and use it in GitHub Desktop.
Named arguments
void Method (int a = 0, int b = 0, int c = 0, int d = 0) { ... }
Method (d:3);
//a=0, b=0, c=0, d=3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment