2 thoughts on “Go To Implementator update

  1. Miha great and very useful plugin, but is there a possibility for it to be implemented for methods that are overriden in inherited classes?
    E.g. in the example you gave in original article if IAnnoy was a class and Tubo overrides DoTubo();

    class Program
    {
    static void Main(string[] args)
    {
    Annoy annoy = new Tubo();
    annoy.DoTubo();
    }
    }

    class Annoy
    {
    public void DoTubo()
    {
    int a = 1;
    }
    }

    class Tubo : Annoy
    {
    public void DoTubo()
    {
    }
    }
    }

Leave a Reply