1:  /// <summary>
   2:  /// 在服务器端写Console.Write,在VS的输出框是打印不出来的,用下面的方式可以打印的出来。
   3:  /// </summary>
   4:  /// <param name="message">要输出的信息</param>
   5:  private void PrintLogInformation(string message)
   6:  {
   7:        System.Diagnostics.Debug.WriteLine(string.Format("{0}.{1}:\t{2}", DateTime.Now, DateTime.Now.Millisecond, message));
   8:  }

相关文章:

  • 2021-09-09
  • 2021-07-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2021-04-30
  • 2021-12-16
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-25
  • 2021-05-10
  • 2021-04-22
相关资源
相似解决方案