public static void dumpStack(string msg, Exception err, OutStream @out, int indent) { StringWriter w = new StringWriter(); doDumpStack(msg, err, indent, w); @out.writeChars(w.ToString()).flush(); }