// public methods /// <summary> /// Pretty prints an Expression. /// </summary> /// <param name="node">The Expression to pretty print.</param> /// <returns>A string containing the pretty printed Expression.</returns> public static string PrettyPrint(Expression node) { var prettyPrinter = new ExpressionPrettyPrinter(); prettyPrinter.Visit(node); return(prettyPrinter.ToString()); }
// public methods /// <summary> /// Pretty prints an Expression. /// </summary> /// <param name="node">The Expression to pretty print.</param> /// <returns>A string containing the pretty printed Expression.</returns> public static string PrettyPrint(Expression node) { var prettyPrinter = new ExpressionPrettyPrinter(); prettyPrinter.Visit(node); return prettyPrinter.ToString(); }