我试图通过<代码>DialogRes和StringBuilder
节省一个文件。 在提出案文后,我呼吁制定以下法典,以挽救档案:
if (dr == DialogResult.OK)
{
StreamWriter sw = new StreamWriter(saveFileDialog1.FileName);
sw.Write(sb.ToString());
sw.Close();
}
I tried to add the second parameter to StreamWriter
as Encoding.UTF8
but since the first argument is a string
rather than a Stream
, it does not compile it.
我怎么能将这种浮游转换为能够把第二个参数作为编码?
其原因是,在我文本I中,有些地方有<条码>微克/代码>,但在保存文件时,如<条码>1⁄4<条码>,<条码>正在改写!
增 编