C# Class Cimbalino.Phone.Toolkit.Extensions.StreamReaderExtensions

Provides a set of static (Shared in Visual Basic) methods for StreamReader instances.
Show file Open project: Cimbalino/Cimbalino-Phone-Toolkit

Public Methods

Method Description
ReadAllLines ( this streamReader ) : string[]

Reads all lines of the stream.

ReadAllLinesAsync ( this streamReader ) : Task

Reads all lines of the stream.

ReadLines ( this streamReader ) : IEnumerable

Reads the lines of a stream.

Method Details

ReadAllLines() public static method

Reads all lines of the stream.
public static ReadAllLines ( this streamReader ) : string[]
streamReader this The instance.
return string[]

ReadAllLinesAsync() public static method

Reads all lines of the stream.
public static ReadAllLinesAsync ( this streamReader ) : Task
streamReader this The instance.
return Task

ReadLines() public static method

Reads the lines of a stream.
public static ReadLines ( this streamReader ) : IEnumerable
streamReader this The instance.
return IEnumerable