XSpect.Yacq.Expressions.YacqExpression.SymbolTable C# (CSharp) Method

SymbolTable() public static method

Creates a SymbolTableExpression that represents the reference to the specified symbol table.
public static SymbolTable ( SymbolTable symbols ) : SymbolTableExpression
symbols XSpect.Yacq.Symbols.SymbolTable The symbol table for the expression.
return SymbolTableExpression
        public static SymbolTableExpression SymbolTable(
            SymbolTable symbols
        )
        {
            return new SymbolTableExpression(symbols);
        }
    }