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
Currently, refreshing the Inheritance Margin glyphs is only triggered by two things:
Notably missing from this list is the case where another document is updated which affects the current document. For example:
Open IMyType.cs containing the following interface:
public interface IMyType { void Method(int argument); }
Open MyType.cs containing the following class:
public class MyType { public void Method(int argument) { } }
Observe: In MyType.cs, the Method method has an inheritance glyph next to it.
Method
In IMyType.cs, change the signature of Method to the following:
void Method(short argument);
Observe: In IMyType.cs, the Method method no longer has an inheritance glyph next to it.
Observe: In MyType.cs, the Method method does have an inheritance glyph next to it, even though the method no longer implements any interface method.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, refreshing the Inheritance Margin glyphs is only triggered by two things:
Notably missing from this list is the case where another document is updated which affects the current document. For example:
Open IMyType.cs containing the following interface:
Open MyType.cs containing the following class:
Observe: In MyType.cs, the
Method
method has an inheritance glyph next to it.In IMyType.cs, change the signature of
Method
to the following:Observe: In IMyType.cs, the
Method
method no longer has an inheritance glyph next to it.Observe: In MyType.cs, the
Method
method does have an inheritance glyph next to it, even though the method no longer implements any interface method.The text was updated successfully, but these errors were encountered: