dotnet/roslyn

Signature help not offered in positional pattern.

Open

#9 101 ouverte le 23 févr. 2016

Voir sur GitHub
 (2 commentaires) (0 réactions) (0 assignés)C# (4 257 forks)batch import
Area-CompilersArea-IDEBugFeature - Pattern MatchingLanguage-C#help wanted

Métriques du dépôt

Stars
 (20 414 stars)
Métriques de merge PR
 (Merge moyen 6j 17h) (256 PRs mergées en 30 j)

Description

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
        {

        }
    }
}

Guide contributeur