Exemplo n.º 1
0
 //
 public static void ProceduresCalledAsFunction(KnowledgeBase KB, List<KBObject> objs, ref string recommendations, out int cant)
 {
     int cant_aux;
     cant = 0;
     foreach (KBObject obj in objs)
     {
         Objects.ProceduresCalledAsFunction(KB.DesignModel, obj, ref recommendations, out cant_aux);
         cant += cant_aux; 
     }
 }