dotnet/roslyn

Signature help not offered in positional pattern.

開放

#9,101 建立於 2016年2月23日

 (2 則留言) (0 個反應) (0 位負責人)C# (4,257 個分叉)batch import
Area-CompilersArea-IDEBugFeature - Pattern MatchingLanguage-C#help wanted

倉庫指標

星標
 (20,414 顆星)
PR 合併指標
 (平均合併 6天 17小時) (30 天內合併 256 個 PR)

描述

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
        {

        }
    }
}

貢獻者指南