私はこの方法を持っています
TextReader tr = new StreamReader(@"\IPSM\DeviceConfig.EXM");
int NumOFLines = 6;
String[] ListLines = new string[NumOFLines];
for (int i = 1; i < NumOFLines; i++)
{
ListLines[i] = tr.ReadLine();
}
using (StreamWriter output = File.AppendText(@"\temp\exm.txt"))
{
output.Write(ListLines[5]);
}
tr.Close();
return;
テキスト ファイルの 5 行目を読み取り、別のテキスト ファイルに追加すると、出力は次のようになります。
Line1
Line2LINE5 //from the other text file
私が欲しい
Line1
Line2
LINE5 //from the other text file
Compact Framework に制限されている次の行に出力するにはどうすればよいですか