roslyn:get_method_signature
Retrieves a method's complete signature by name, including parameters, return type, nullability, and modifiers, with support for overload selection.
Instructions
Get detailed method signature BY NAME including parameters, return type, nullability, and modifiers.
USAGE: get_method_signature("MyClass", "ProcessData") or with overload selection: get_method_signature("MyClass", "ProcessData", overloadIndex=1)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| typeName | Yes | Containing type name | |
| methodName | Yes | Method name | |
| overloadIndex | No | Which overload (0-based, default: 0) |