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

VisitAttributedStatement() private méthode

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