Area-CompilersArea-IDEBugFeature - Pattern MatchingLanguage-C#help wanted
Repository-Metriken
- Stars
- (20.414 Stars)
- PR-Merge-Metriken
- (Durchschn. Merge 6T 17h) (256 gemergte PRs in 30 T)
Beschreibung
public class Point
{
public int X;
public int Y;
public void Deconstruct(out int XX, out int YY) => throw null;
void M()
{
object o = null;
if (o is Point($)) // <-- i should get sighelp here to make it clear what is being matched
{
}
}
}