示例#1
0
 public override bool Matches(Expression E, MatchContext Matched)
 {
     return((ReferenceEquals(Ring, null) || Ring.Contains(E)) && Matched.Matches(this, E));
 }
示例#2
0
 public override bool Matches(Expression E, MatchContext Matched)
 {
     return((Ring is null || Ring.Contains(E)) && Matched.Matches(this, E));
 }