public override bool Equals(object obj) { #pragma warning disable 56506 RuleStatementAction other = obj as RuleStatementAction; return((other != null) && (CodeDomStatementWalker.Match(CodeDomStatement, other.CodeDomStatement))); #pragma warning restore 56506 }
public override bool Equals(object obj) { RuleStatementAction action = obj as RuleStatementAction; return((action != null) && CodeDomStatementWalker.Match(this.CodeDomStatement, action.CodeDomStatement)); }