메소드 | 설명 | |
---|---|---|
Read ( Stream stream, int count ) : IEnumerable |
Reads the given stream, tailing the given number of lines, sing UTF-8 encoding.
|
|
Read ( Stream stream, int count, |
Reads the given stream, tailing the given number of lines.
|
|
Read ( string path, int count ) : IEnumerable |
Reads the given file, tailing the given number of lines, using UTF-8 encoding.
|
|
Read ( string path, int count, |
Reads the given file, tailing the given number of lines.
|
메소드 | 설명 | |
---|---|---|
ReadBuffer ( IList |
Reads a buffer of characters in reverse, appending each line to the given output list and writing the un-split output to the given output string.
|
public static Read ( Stream stream, int count ) : IEnumerable |
||
stream | Stream | The stream to read. |
count | int | The maximum number of lines to tail. |
리턴 | IEnumerable |
public static Read ( Stream stream, int count, |
||
stream | Stream | The stream to read. |
count | int | The maximum number of lines to tail. |
encoding | The encoding to use. | |
리턴 | IEnumerable |
public static Read ( string path, int count ) : IEnumerable |
||
path | string | The path of the file to read. |
count | int | The maximum number of lines to tail. |
리턴 | IEnumerable |
public static Read ( string path, int count, |
||
path | string | The path of the file to read. |
count | int | The maximum number of lines to tail. |
encoding | The encoding to use. | |
리턴 | IEnumerable |