Reads a single line from a stream

Namespace:  Cloudster
Assembly:  Cloudster.CoreLib (in Cloudster.CoreLib.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static string ReadLine(
	Stream inputStream
)
Visual Basic (Declaration)
Public Shared Function ReadLine ( _
	inputStream As Stream _
) As String
Visual C++
public:
static String^ ReadLine(
	Stream^ inputStream
)

Parameters

inputStream
Type: System.IO..::.Stream
Stream from which data will be read

Return Value

The next line in the stream as a string, or an empty string if there is no more data available from the stream

See Also