예제 #1
0
        public override string ToString()
        {
            StringBuilder stringBuilder = new StringBuilder();

            stringBuilder.Append("(").Append((Left != null) ? Left.ToString() : "null").Append(" ")
            .Append(Conjunction.ToString())
            .Append(" ")
            .Append((Right != null) ? Right.ToString() : "null")
            .Append(")");
            return(stringBuilder.ToString());
        }
예제 #2
0
 /// <summary>
 /// Returns a string representation of the FileSelector object.
 /// </summary>
 /// <returns>The string representation of the boolean logic statement of the file
 /// selection criteria for this instance. </returns>
 public override String ToString()
 {
     return("FileSelector(" + _Criterion.ToString() + ")");
 }