writeChars() public method

public writeChars ( string s ) : OutStream
s string
return OutStream
Example #1
0
        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();
        }
Example #2
0
File: Err.cs Project: nomit007/f4
 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();
 }