We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version Used: VS 17.11 preview 1
Steps to Reproduce:
Given the following sample code:
public class BankAccount(string accountID, string owner) { } public class CheckingAccount(string accountID, string owner, decimal overdraftLimit = 0) : BankAccount(accountID, owner) { }
BackAccount
method
project
SymbolFinder.FindReferencesAsync(method, project.Solution)
CheckingAccount
The text was updated successfully, but these errors were encountered:
This is by design. doing SymbolFinder on the type will find that symbol.
Sorry, something went wrong.
Thank you for your explanation. I will get a workaround for that.
CyrusNajmabadi
Successfully merging a pull request may close this issue.
Version Used:
VS 17.11 preview 1
Steps to Reproduce:
Given the following sample code:
BackAccount
constructor method asmethod
and the owningproject
SymbolFinder.FindReferencesAsync(method, project.Solution)
CheckingAccount
class declaration is not listed in the results.The text was updated successfully, but these errors were encountered: