예제 #1
0
파일: API.cs 프로젝트: diogorb/KBDoctor
 //
 public static void EmptyConditionalBlocks(KnowledgeBase KB, List<KBObject> objs, ref string recommendations, out int cant)
 {
     int cant_aux;
     cant = 0;
     foreach (KBObject obj in objs)
     {
         Objects.EmptyConditionalBlocks(KB.DesignModel, obj, ref recommendations, out cant_aux);
         cant += cant_aux;
     }
 }