I'm having issues with visual studio's intellisense not working very well with complex types, leaving with little or no visibility of methods/properties.
I have a nuget dependency on a class library that contains a type with many hundred methods (effectively its a schema definition).
Normally this wouldnt be an issue, intellisense would simply bring up the available methods and life would be easy...but Visual Studio isnt cooperating, at best it takes 3 minutes to construct the list of options, thats if its actually doing anything, it would seem reasonable to peek the definition, but similarly this does nothing, and going to the definition brings up "Cannot navigate to symbol under the caret".
So my options seem to be to go and find the source code of the external dependency (which luckily I can do), but this seems at best irritating.....any suggestions?...is there a way to simply browse the class/type/interfaces inside an external dependency?
(sorry for posting this in F#, but I suspect this may be an idiosyncracy of visual studios F# editor).