roslyn:get_method_signature
Retrieve method signature details including parameters, return type, nullability, and modifiers by specifying the type name and method name. Supports 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) |