Public · Protected · Private
Invoking Methods using Named Parameters
Type: Public  |  Created: 2012-06-12  |  Frozen: Yes
« Previous Public Blog Next Public Blog »
Comments
  • private void foo(int first, int second, int third) { int y = first + second + third; } calling above method like below is legal. foo(first: 12, third: 14, second: 21); parameters are treated here as name value pairs and order is not important.
    2012-06-12 09:58
This blog is frozen. No new comments or edits allowed.