CSJ2K.j2k.util.StreamMsgLogger.println C# (CSharp) Метод

println() публичный Метод

Prints the string 'str' to the 'out' stream, appending a newline. The message is reformatted to the line width given to the constructors and using 'flind' characters to indent the first line and 'ind' characters to indent the second line. However, any newlines appearing in 'str' are respected. The output device may or may not display the string until flush() is called, depending on the autoflush state of the PrintWriter, to be sure flush() should be called to write the string to the device. This method just prints the string, the string does not make part of a "message" in the sense that noe severity is associated to it.
public println ( string str, int flind, int ind ) : void
str string The string to print ///
flind int Indentation of the first line ///
ind int Indentation of any other lines. ///
Результат void
        public virtual void println(string str, int flind, int ind)
        {
            mp.print(out_Renamed, flind, ind, str);
        }