I'm new to C# in ASP.Net. I'm using VS 2015 and a NetCore project. I'm used in PHP (PHPStorm IDE) to Control-Click a method name to go to it's definition and see what it does.
In VS 2015, for example for a View() in a Controller, I have to Right Click -> Go to Definition. But the definition is just this:
...
//
// Summary:
// Creates a Microsoft.AspNetCore.Mvc.ViewResult object that renders a view to the
// response.
//
// Returns:
// The created Microsoft.AspNetCore.Mvc.ViewResult object for the response.
[NonAction]
public virtual ViewResult View();
...
So I can't see what it actually does. Is this because it's closed-source?
EDIT:
I installed the dotPeek free from Jetbrains and works awesome for what I was looking. It even has the Control-Click to go to definition: