Пример #1
0
 //
 public static void ParametersTypeComparer(KnowledgeBase KB, List<KBObject> objs, ref string recommendations, out int cant)
 {
     int cant_aux;
     cant = 0;
     foreach (KBObject obj in objs)
     {
         Objects.ParameterTypeComparer(KB.DesignModel, obj, ref recommendations, out cant_aux);
         cant += cant_aux;
     }
 }