Recently Alex Buckley blogged about a possible language change to allow Named Parameters in method calls.
Today I had need for such a feature. I was calling this method
public void startOperatorSimulation(int pos, int stepDelay, int opNumber) { ... }
multiple times, which matches Alex's first use case for named parameters 'When a method has adjacent parameters with the same type but...