コード例 #1
0
 public static void SwitchDebugLevel(DebugLevel level)
 {
     foreach (DebugLevelOption dloption in DebugLevelOption.DebugLevelOptions)
     {
         if (level.Equals(dloption.DebugLevel))
         {
             dloption.Enabled = !dloption.Enabled;
             break;
         }
     }
 }
コード例 #2
0
 public static void IncludeLevel(DebugLevel level)
 {
     foreach (DebugLevelOption dloption in DebugLevelOption.DebugLevelOptions)
     {
         if (level.Equals(dloption.DebugLevel))
         {
             dloption.Enabled = true;
             break;
         }
     }
 }