ToString() public méthode

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