Is there any plug-in, or built-in way to locate extension methods in Visual Studio? Often I know that the method exists, but not the namespace its in. or if I copy a line of code from one location to another, it would make it easier to auto-resolve the using
line.
They have already made it very easy to do this for resolving possible class locations by letting me right click on a type name and select "Resolve" which lists possible classes I could be looking for. I can't seem to find anything similar that would do it for extension methods.
Based on the number of SO questions asking why a Linq extension method doesn't work due to a missing using
, it seems like this would be a pretty common need. Does anyone know of a way to do this? Thanks in advance.