⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debug.cs

📁 asp.net经典案例资料
💻 CS
字号:
using System;
using System.IO;
using System.Configuration;
using System.Collections.Specialized;

public class MyDebug
{
  public static void Write(string arg)
  {
    NameValueCollection config = 
      (NameValueCollection)ConfigurationSettings.GetConfig("mySection");

    if( config["debug"] != "true" )
      return;

    StreamWriter writer = File.AppendText(config["fileName"]);
    writer.WriteLine(arg);
    writer.Close();
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -