私はテキストファイルを持っています:
hh
Something sdf....
one line
empty line
other line
goal
Something apf ee
one line
goal
List<String> goo = new List<String>();
System.IO.StreamReader file = new System.IO.StreamReader("text.txt");
while (file.EndOfStream != true)
{
string s = file.ReadLine();
if (s.Contains("Something"))
{
goo.Add(s);
}
}
Something
までのすべての行を取得したいgoal
。ファイルには とがたくさんSomething
ありgoal
ます。私は配列か何かを使用する必要があります...?