roslyn:get_symbol_info
Retrieve symbol kind, type, namespace, documentation, and location by providing a file path and zero-based line/column coordinates.
Instructions
Get detailed semantic information about a symbol at a specific position. IMPORTANT: Uses ZERO-BASED coordinates. If your editor shows 'Line 14, Column 5', pass line=13, column=4. Returns symbol kind, type, namespace, documentation, and location.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Absolute path to source file | |
| line | Yes | Zero-based line number (Visual Studio line 14 = line 13 here) | |
| column | Yes | Zero-based column number (Visual Studio col 5 = col 4 here) |