Microsoft.Zing.ZReplacer.VisitAttributedStatement C# (CSharp) Méthode

VisitAttributedStatement() private méthode

private VisitAttributedStatement ( AttributedStatement attributedStmt ) : AttributedStatement
attributedStmt AttributedStatement
Résultat AttributedStatement
        private AttributedStatement VisitAttributedStatement(AttributedStatement attributedStmt)
        {
            attributedStmt.Attributes = this.VisitAttributeList(attributedStmt.Attributes);
            attributedStmt.Statement = (Statement)this.Visit(attributedStmt.Statement);

            return attributedStmt;
        }