Encog.Util.HTTP.FormUtility.Writeln C# (CSharp) Метод

Writeln() защищенный Метод

Write a string, with a carriage return and linefeed.
protected Writeln ( String str ) : void
str String The string to write.
Результат void
        protected void Writeln(String str)
        {
            Write(str);
            Newline();
        }
    }