ToString() public method

Returns a string representation of the expression.
public ToString ( ) : string
return string
Ejemplo n.º 1
0
 public void UnsupportedRelationalOperatorTest2()
 {
     var cond = new ConditionRelationalExpression("true", "true", (ConditionRelationalOperator)(-1));
     cond.ToString();
 }
Ejemplo n.º 2
0
 public void UnsupportedRelationalOperatorTest2()
 {
     var cond = new ConditionRelationalExpression("true", "true", (ConditionRelationalOperator)(-1));
     Assert.Throws<NotSupportedException>(() => cond.ToString());
 }