Finding Overridable Members From a ITypeSymbol #47631
-
I'm currently working on a source generator where I need to get a list of all methods from an I'm basically looking to not re-invent the wheel if possible, so if there's a way to do this programmatically, please let me know, TIA. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The abstract class implementation codefix appears to be in Features/Core/Portable/ImplementAbstractClass with the C#-specific stuff in Features/CSharp/Portable/ImplementAbstractClass/CSharpImplementAbstractClassCodeFixProvider.cs And the interface implementation codefix is in src/Features/Core/Portable/ImplementInterface with some C#-specific stuff in src/Features/CSharp/Portable/ImplementInterface |
Beta Was this translation helpful? Give feedback.
The abstract class implementation codefix appears to be in Features/Core/Portable/ImplementAbstractClass with the C#-specific stuff in Features/CSharp/Portable/ImplementAbstractClass/CSharpImplementAbstractClassCodeFixProvider.cs
And the interface implementation codefix is in src/Features/Core/Portable/ImplementInterface with some C#-specific stuff in src/Features/CSharp/Portable/ImplementInterface