C# 클래스 Cimbalino.Phone.Toolkit.Extensions.StreamReaderExtensions

Provides a set of static (Shared in Visual Basic) methods for StreamReader instances.
파일 보기 프로젝트 열기: Cimbalino/Cimbalino-Phone-Toolkit

공개 메소드들

메소드 설명
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.

메소드 상세

ReadAllLines() 공개 정적인 메소드

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

ReadAllLinesAsync() 공개 정적인 메소드

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

ReadLines() 공개 정적인 메소드

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