resolve_stack_trace
Map a pasted .NET stack trace to file/line/symbol against the loaded solution, undoing compiler name mangling: async/iterator state machines (<M>d__N.MoveNext), lambdas (<>c / <>c__DisplayClass), local functions (g__Name|), generic arity. Handles Exception.ToString() output, log-prefixed lines, inner-exception chains, and Ben.Demystifier-style traces. Frames without 'in file:line' get the declaration site; frames with it keep the exact location. External frames resolve with origin=metadata. Items are in original trace order.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
stackTrace | string | ✓ | The stack trace text, pasted as-is (multi-line) |
limit | int? | Maximum number of items to return (default: 500) |