C # 4.0 introduced named arguments . This function allows you to define method arguments by their names instead of their position:
public void Foo(int bar, string quux) { }
Intellisense has been updated to support this feature, so its autocomplete mechanism now offers both options when a character accessible from the current scope has the same name as the method argument.
FrΓ©dΓ©ric hamidi
source share