コード例 #1
0
 public static void Main(string[] args)
 {
     DebugMgr.assignDebugFlags(10);
     Chap01SecAll.RunExamples.DoIt();
     Chap01SecInheritanceAndStructs.RunExamples.DoIt();
     Chap01SecGenerics.RunExamples.DoIt();
     Chap01SecAsynchronous.RunExamples.DoIt();
 }
コード例 #2
0
 public static void Main(string[] args)
 {
     DebugMgr.assignDebugFlags(10);
     DebugMgr.start(8, "Main");
     try {
         RunDynamic();
     }
     catch (Exception ex) {
         DebugMgr.output(1, "!!! " + ex.Message + " !!!");
     }
     DebugMgr.end(8);
 }