roslyn:get_method_signature
Get a method's detailed signature including parameters, return type, nullability, and modifiers by providing the type and method name. Optionally select a specific overload.
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) |