//写日志
                System.IO.FileStream fs = new System.IO.FileStream("E:\\log.txt", System.IO.FileMode.Append);
                System.IO.StreamWriter sw = new System.IO.StreamWriter(fs, System.Text.Encoding.Default);
                sw.WriteLine(DateTime.Now.ToString() + "'\t'" + guid.ToString() + "'\t'" + sbEncryptKey + "'\t'" + "'\r\n'");
                sw.Close();
                fs.Close();

相关文章:

  • 2021-09-27
  • 2021-12-08
  • 2022-12-23
  • 2021-05-22
  • 2022-12-23
  • 2021-09-04
猜你喜欢
  • 2021-09-16
  • 2021-07-29
  • 2021-11-27
  • 2021-12-26
  • 2021-12-01
  • 2022-02-02
  • 2021-09-04
相关资源
相似解决方案