コード例 #1
0
        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
        }
コード例 #2
0
        public override bool Equals(object obj)
        {
            RuleStatementAction action = obj as RuleStatementAction;

            return((action != null) && CodeDomStatementWalker.Match(this.CodeDomStatement, action.CodeDomStatement));
        }