dotnet/roslyn
Ver no GitHubSignature help not offered in positional pattern.
Open
#9.101 aberto em 23 de fev. de 2016
Area-CompilersArea-IDEBugFeature - Pattern MatchingLanguage-C#help wanted
Métricas do repositório
- Stars
- (20.414 stars)
- Métricas de merge de PR
- (Mesclagem média 6d 17h) (256 fundiu PRs em 30d)
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
{
}
}
}