Extract functions for shared parts:

void Do(string name)
{
    DoStuff();
    int i = find(name);
    DoStuffWithIndex(i);
}

void Do(int name)
{
    DoStuff();
    DoStuffWithIndex(i);
}

Reply via email to