CSharpRepl icon indicating copy to clipboard operation
CSharpRepl copied to clipboard

Overload help - support for this/base overloads

Open kindermannhubert opened this issue 3 years ago • 0 comments

Feature Description

E.g.:

class A { protected A(string s) { } }
class B : A { B() : base(/*here we want overload help*/) { } }

It's already pre-prepared with TODO in RoslynServices.GetOverloadsAsync.GetMemberGroup. There are some minor complications around getting the correct set of overloads.

kindermannhubert avatar Jul 20 '22 19:07 kindermannhubert