Ejemplo n.º 1
0
 //
 public static bool AssignTypesComprarer(KnowledgeBase KB, List<KBObject> objs, ref string recommendations, out int cant)
 {
     int cant_aux;
     cant = 0;
     foreach (KBObject obj in objs)
     {
         Objects.AssignTypeComparer(KB.DesignModel, obj, ref recommendations, out cant_aux);
         cant += cant_aux;
     }
     return true;
 }