I have the following methods:
void Method(string param1, string param2); void Method(string param1, object param2);
When I call the met
You can be specific about which version of the method you want to call by specifying which type of null you're passing:
Method("string", null as string);