Exemple #1
0
 public ParametroRecargable(UInt refmaxima, Observer objetivo)
 {
     maxima          = refmaxima;
     actual          = new Float(refmaxima.get());
     involucrado     = objetivo;
     bloqueado_sumar = bloqueado_restar = false;
 }
Exemple #2
0
        public int CompareTo(object obj)
        {
            UInt comp = (UInt)obj;

            return(get().CompareTo(comp.get()));
        }