protected bool MatchMember(MemberDeclaration o, Match match)
		{
			return MatchAttributesAndModifiers(o, match) && this.ReturnType.DoMatch(o.ReturnType, match)
				&& this.PrivateImplementationType.DoMatch(o.PrivateImplementationType, match) && MatchString(this.Name, o.Name);
		}
 protected bool MatchMember(MemberDeclaration o, Match match)
 {
     return(MatchAttributesAndModifiers(o, match) && this.ReturnType.DoMatch(o.ReturnType, match) &&
            this.PrivateImplementationType.DoMatch(o.PrivateImplementationType, match) && MatchString(this.Name, o.Name));
 }