reader クラス : ReadLine() メソッド

説明

次の行を取得し、読み取り位置を進めます。

構文

readerInstance.ReadLine()

引数

無し。

返り値

クラス説明
string次の行。

サンプルコード

1:

reader r = new reader("c:\somewhere...\sample.txt");

2:

string nextLine = r.ReadLine();

注意

これは、System.IO.StreamReader.ReadLine() メソッドのラッパーです。

次の行を返します。 次の行がない場合は例外をスローします。

現在位置は次行の先頭に移動します。

改行文字は結果には含まれません。

参照リンク

Copyright © Cooker All rights reserved.