XSpect.Yacq.Expressions.QuotedExpression.ToString C# (CSharp) Method

ToString() public method

Returns a String that represents this expression.
public ToString ( ) : String
return String
        public override String ToString()
        {
            return (this.QuoteType == QuoteType.Quote ? "#'" : "#`") + this.Expression;
        }