Is there any sort of convention in C# (or any object oriented language that supports method overloading) for the following situation?
Lets say I have a method foo:
public void Foo(int a){//does stuff}
But actually I have 3 methods foo:
public void Foo(int a){}
public void Foo(int a, double b){}
public void Foo(float c, int a, double b){}
Is there a convention that states whether or not the order of parameters matters in an overloaded method? Notice how the 3rd method doesn't an obvious logical progression (a,b,c).
ais always required, andbis required ifcis provided, I would do something like this:public void Foo(int a, double? b = null, float? c = null)- assuming your logic is the same. – zimdanen Feb 12 at 20:31