Fan.Sys.OutStream.writeChars C# (CSharp) Méthode

writeChars() public méthode

public writeChars ( string s ) : OutStream
s string
Résultat OutStream
        public virtual OutStream writeChars(string s)
        {
            return writeChars(s, 0, s.Length);
        }

Same methods

OutStream::writeChars ( string s, int off, int len ) : OutStream
OutStream::writeChars ( string s, long off ) : OutStream
OutStream::writeChars ( string s, long off, long len ) : OutStream

Usage Example

Exemple #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();
        }
All Usage Examples Of Fan.Sys.OutStream::writeChars