writer class : WriteLine() method

Description

Writes a line terminator string to the writer.

Syntax

writerInstance.WriteLine()

Arguments

None.

Return value

None.

Sample code

1:

writer w = new writer("c:\somewhere...\sample.txt");

2:

w.WriteLine();

Notes

It's a wrapper of the System.IO.StreamWriter.WriteLine() method.

Links for reference

Copyright © Cooker All rights reserved.