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

Variable() public static method

Creates a DispatchExpression that represents the member-reference dispatching, without the receiver.
public static Variable ( String name ) : DispatchExpression
name String The name to use for dispatching.
return DispatchExpression
        public static DispatchExpression Variable(
            String name
        )
        {
            return Dispatch(DispatchTypes.Member, name);
        }

Same methods

YacqExpression::Variable ( SymbolTable symbols, String name ) : DispatchExpression