码迷,mamicode.com
首页 > Windows程序 > 详细

C#在代码中编写输出debug信息-类Debug的使用

时间:2019-09-05 13:45:46      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:bsp   href   hello   关键字   work   sof   style   示例   msdn   

 

文章:C# 的两种debug 方法

 

文章:C#跟踪和调试程序-Debug类使用

很全面的文章,可以仔细学习使用下。

 

文章:C#调试类

没有仔细看。

 

关键字:Debug类和Trace类有什么区别?

 

微软资料:https://docs.microsoft.com/zh-cn/dotnet/api/system.diagnostics.debug?redirectedfrom=MSDN&view=netframework-4.8

标题:Debug Class

类的作用:提供一组有助于调试代码的方法和属性。

示例代码:

// Specify /d:DEBUG when compiling.

using System;
using System.Data;
using System.Diagnostics;

class Test
{
    static void Main()
    {
       Debug.Listeners.Add(new TextWriterTraceListener(Console.Out));
       Debug.AutoFlush = true;
       Debug.Indent();
       Debug.WriteLine("Entering Main");
       Console.WriteLine("Hello World.");
       Debug.WriteLine("Exiting Main"); 
       Debug.Unindent();
    }
}

详细信息需要看微软的网站。

 

C#在代码中编写输出debug信息-类Debug的使用

标签:bsp   href   hello   关键字   work   sof   style   示例   msdn   

原文地址:https://www.cnblogs.com/Tpf386/p/11465049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!