Java.IO.PrintWriter.Println Method
Prints the string representation of the string s followed by a newline.

Syntax

[Android.Runtime.Register("println", "(Ljava/lang/String;)V", "GetPrintln_Ljava_lang_String_Handler")]
public virtual void Println (string str)

Parameters

str
Documentation for this section has not yet been entered.

Remarks

Prints the string representation of the string s followed by a newline. Flushes this writer if the autoFlush flag is set to true.

The string is converted to an array of bytes using the encoding chosen during the construction of this writer. The bytes are then written to the target with write(int). Finally, this writer is flushed if the autoFlush flag is set to true.

If an I/O error occurs, this writer's error flag is set to true.

[Android Documentation]

Requirements

Namespace: Java.IO
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1