摘要: 1、 #define TRACE_ONusing System;using System.Diagnostics;public class Trace{ [Conditional("TRACE_ON")] public static void Msg(string msg) { Console.WriteLine(msg); }}public class ProgramClass{ static ... 阅读全文
posted @ 2010-04-16 10:54 Elaine Shi 阅读(142) 评论(0) 推荐(0) 编辑