fbehrens
fbehrens

Reputation: 6543

Is there a class view in visual studio for f#?

It is possible to get Visual Studio show me a window, where I can see and search my f# namespaces, classes and methods. I have VisualFSharpPowerTools installed, but the class View of Visual Sudio is empty ?

Upvotes: 3

Views: 188

Answers (1)

asibahi
asibahi

Reputation: 887

So I googled it and apparently your question is the first result. Nice!!

According to this issue on uservoice which is linked to from this issue in Github there isn't a way to do that.

However, and I just tested this: you can use the Navigate shortcut in Visual Studio to jump to the definition of any method (er .. call it a function), or type, or union case. Press Ctrl + , and type away.

Upvotes: 4

Related Questions