好的,我可能在这里遗漏了一些非常简单的东西,但是我已经在这个地方待了一个多小时,却一无所获。:( 我有一个使用 Microsoft 的 Visual C# 2008 Express Edition 的 C# 项目。“保存”对话框根据需要显示,但它从不生成文件。实际上,一旦指定了文件,我希望应用程序以当前的方式维护它数据作为日志文件。现在,如果我能得到 ####### 东西来制作一个空文件,我会很高兴。这是我到目前为止所能想到的:
private void saveLogAsToolStripMenuItem_Click(object sender, EventArgs e)
{
if (DialogResult.OK == saveFileDialog1.ShowDialog())
{
// If the file name is not an empty string open it for saving.
if (saveFileDialog1.FileName != "")
{
/* This does not work.
// Saves the Image via a FileStream created by the OpenFile method.
System.IO.FileStream fs = (System.IO.FileStream)saveFileDialog1.OpenFile();
fs.Write((byte)"Success!\r\n", 0, 10);
fs.Close();
*/
}
else
{
textBox1.Text += "An invalid filename was specified.\r\n";
}
}
}
任何建议将不胜感激。谢谢。