C# Class NArrange.Core.Configuration.UnaryOperatorExpression

Unary operator expression.
Inheritance: IConditionExpression
Show file Open project: MarcStan/NArrange Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
ToString ( ) : string

Gets the string representation of this expression.

UnaryOperatorExpression ( UnaryExpressionOperator operatorType, IConditionExpression innerExpression ) : System.Threading

Creates a new unary operator expression.

Method Details

ToString() public method

Gets the string representation of this expression.
public ToString ( ) : string
return string

UnaryOperatorExpression() public method

Creates a new unary operator expression.
public UnaryOperatorExpression ( UnaryExpressionOperator operatorType, IConditionExpression innerExpression ) : System.Threading
operatorType UnaryExpressionOperator Type of the operator.
innerExpression IConditionExpression The inner expression.
return System.Threading