示例#1
0
        void Trace(string s)
        {
            if (!debug && (s.StartsWith("debug")))
            {
                return;
            }

            Parent.Trace(s);
        }
示例#2
0
 //
 void Trace(string s)
 {
     Parent.Trace(s);
 }