'Does Visual Studio or any add-ons provide Intellisense on injected concrete type for interface?

With dependency injection in .NET core, I often find myself jumping to the startup.cs class to figure out what concrete type is being injected as an interface dependency in some other class.

So if I have a Person class:

public class Person 
{
public Person(ICellPhone phone){}
}

It would be neat if there was a tool that would let me click the contract in the constructor, press some key, and then auto navigate to what the current concrete implementation would be fulfilling ICellPhone.

Does anything like this already exist?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source