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