roslyn:get_symbol_info
Retrieve detailed semantic information about C# symbols at specific positions in source files, including type, namespace, and documentation, using Roslyn compiler analysis.
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) |