reader クラス : ReadToEnd() メソッド
説明
Gets all characters from the current position to the end.
構文
readerInstance.ReadToEnd()
引数
無し。
返り値
クラス | 説明 |
string | 現在の位置から最後までのすべての文字。 |
サンプルコード
1: | reader r = new reader("c:\somewhere...\sample.txt"); |
2: | string rest = r.ReadToEnd(); |
注意
これは、System.IO.StreamReader.ReadToEnd() メソッドのラッパーです。
現在の位置から最後までの文字列を返します。 現在の位置が最後にある場合は、空の文字列を返します。
現在の位置は、ReadToEnd() によって最後まで移動します。