You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VS Code has a command editor.action.goToTypeDefinition that is implemented for a number of languages, but not for C#. At the moment I don't see a way to use the existing endpoints to create this functionality. A new endpoint to go to the definition of the type / class of a variable would be helpful in C# workflow, especially when using implicitly typed variables that don't have the name of the type anywhere in the file.
VS Code has a command
editor.action.goToTypeDefinition
that is implemented for a number of languages, but not for C#. At the moment I don't see a way to use the existing endpoints to create this functionality. A new endpoint to go to the definition of the type / class of a variable would be helpful in C# workflow, especially when using implicitly typed variables that don't have the name of the type anywhere in the file.Example:
file1.cs:
file2.cs:
GoToTypeDefinition at the position of
variableName
would return the definition of the classC
in file1.cs.The text was updated successfully, but these errors were encountered: