In C++ it is possible to skip method parameter identifier if it's unused:
void foo( int, int ) {}
This is very useful in case of interface implementations where a huge number of method has empty body. Is it possible to do something similiar in C#? Straight test gives error:
public void OnAddInsUpdate( ref Array ) {} // Error, need identifier :(