NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

10.3.4 Overloaded method resolution

Given the set of methods overloaded on a name, the following algorithm determines the applicable method to an argument list:

A member M is considered more applicable than N if and only if for each formal parameter Mj and Nj that match an actual parameter Aj:

Note that because of the named parameter syntax, the ordering of the actual and formal parameters may not be the same. It is important to note that overload resolution is done on signatures, not on the original method declaration. This means that optional parameters and paramarrays play no part in the process, having already been factored into a method's signature.