Ejemplo n.º 1
0
 public virtual void VisitUsingStatement(UsingStatementSyntax node)
 {
     DefaultVisit(node);
 }
Ejemplo n.º 2
0
        public static UsingStatementSyntax UsingStatement(VariableDeclarationSyntax declaration = null, ExpressionSyntax expression = null, StatementSyntax statement = null)
        {
            var result = new UsingStatementSyntax();

            result.Declaration = declaration;
            result.Expression = expression;
            result.Statement = statement;

            return result;
        }
Ejemplo n.º 3
0
        public static UsingStatementSyntax UsingStatement(StatementSyntax statement = null)
        {
            var result = new UsingStatementSyntax();

            result.Statement = statement;

            return result;
        }
Ejemplo n.º 4
0
 public virtual void VisitUsingStatement(UsingStatementSyntax node)
 {
     DefaultVisit(node);
 }