visual stdio trace point 的使用
根據msdn 里 trace point 定義為
Tracepoints are a new way of using breakpoints. A tracepoint is a breakpoint with a custom action associated with it. When the tracepoint is hit, it causes the debugger to perform the specified action instead of (or in addition to) breaking program execution.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace test_tracePoint
7 {
8 class Program
9 {
10 static void Main(string[] args)
11 {
12 Console.WriteLine("hi 大家好");
13 Console.Read();
14 }
15 }
16 }



浙公网安备 33010602011771号