Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
元の xml ファイルが完全ではなく、例外がスローされます: Unexpected end of file has occured . 次の要素は閉じていません rrrr、nnnn
XML ファイルの例:
<rrrr> <nnnn> <aaaa> </aaaa> <bbbb> </bbbb>
C# を使用してこのファイルを編集してインクルードするにはどうすればよい </nnnn></rrrr>ですか?
</nnnn></rrrr>
最も単純なものはFile.AppendTextメソッドを使用します:
File.AppendText
using (StreamWriter w = File.AppendText(filePath)) { w.WriteLine("</nnnn>"); w.WriteLinw("</rrrr>"); }