You changed the function to require one parameter ... so now all your old function calls that did not pass any parameters are invalid.
Is this option absolutely necessary, or is it the default value? if it is used by default, use the default option or overload:
//`variable` will be 0 if called with no parameters public static int[] ArrayWorkings(int variable=0) // pre-C
source share