Ancestry.QueryProcessor.Parse.CaseExpression.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return "case" + (IsStrict ? " strict" : "") + (TestExpression != null ? " " + TestExpression : "")
                + String.Concat(from i in Items select "\r\n\t" + i.ToString())
                + "\r\n\t" + ElseExpression
                + "\r\nend";
        }