文件写入.txt
来自「C#做的加密解密的东西」· 文本 代码 · 共 14 行
TXT
14 行
private void button1_Click(object sender, System.EventArgs e)
{
using (StreamWriter sw = new StreamWriter("md5.txt"))
{
// Add some text to the file.
sw.Write("This is the ");
sw.WriteLine("header for the file.");
sw.WriteLine("-------------------");
// Arbitrary objects can also be written to the file.
sw.Write("The date is: ");
sw.WriteLine(DateTime.Now);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?