Inheritance: NameMatcher
Beispiel #1
0
 public bool Equals(IdentifierName other)
 {
     return(other != null && Matches(other.MatchName));
 }
Beispiel #2
0
 public bool Equals(IdentifierName other)
 {
     return other != null && Matches(other.MatchName);
 }
Beispiel #3
0
 public MemberQuery(string memberName, int parameterCount, BindingFlags flags, Type[] parameterTypes)
 {
     this.memberName = new IdentifierName(memberName);
     this.parameterCount = parameterCount;
     this.flags = flags;
     this.parameterTypes = parameterTypes;
 }