New version of my Go To Implementator (1.0.8) is now built against DXCore/CodeRush 11.2.11.
2 thoughts on “Go To Implementator update”
Leave a Reply
You must be logged in to post a comment.
About .NET/C#, Xamarin, Flutter and other fun technologies
New version of my Go To Implementator (1.0.8) is now built against DXCore/CodeRush 11.2.11.
You must be logged in to post a comment.
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()
{
}
}
}
Hi Dragan,
Good suggestion. I'll think about it and try to implement it for the next version.