roslyn:find_implementations
Locate all implementations of an interface or abstract class in .NET/C# code using Roslyn compiler analysis. Returns implementing types with their file locations.
Instructions
Find all implementations of an interface or abstract class. Returns implementing types with their locations. IMPORTANT: Uses ZERO-BASED coordinates (editor line - 1).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Absolute path to source file | |
| line | Yes | Zero-based line number | |
| column | Yes | Zero-based column number | |
| maxResults | No | Maximum number of implementations to return (default: 50). Results are truncated with a hint if limit is exceeded. |