我想用 C# 将一个文件的选定部分复制到另一个文件中
例如,假设我有一个包含以下内容的文件:
<div id="1"> contents of this div.. </div>
<div id="2"> contents of this div.. </div>
<div id="3"> contents of this div.. </div>
现在,如果我只想将该行复制<div id="2"> contents of this div.. </div>
到一个新文件中。那我怎样才能有效地做到这一点?