show/hide this revision's text 2 Mention run-time switch-on-type, and CodeDom

You can do this in C++ but not in C# (unless the inner method can also be generic instead of overloaded).


Alternatively (if you won't take 'no' for an answer), you can do a run-time switch on type, like for example ...

public void OuterMethod(object parameter)
{
    if (parameter is int)
        InnerMethod((int)parameter);
    else if (parameter is string)
        InnerMethod((string)parameter);
    else
        throw new SomeKindOfException();
}

... but obviously this is a run-time, not a compile-time check.

But I'd rather do this the right way instead of copying/pasting code.

You can also write software to write your outer methods (e.g. using System.CodeDom classes) instead of writing them by hand, but this is probably more trouble than it's worth.

show/hide this revision's text 1

You can do this in C++ but not in C# (unless the inner method can also be generic instead of overloaded).