Exemplo n.º 1
0
        public override void setValue(double i)
        {
            Value = i;
            Notify(this);

            if (first)
            {
                first = false;
                rsg.Generator(this);
            }
        }
Exemplo n.º 2
0
        public override void setValue(double i)
        {
            Value = i;
            Notify(this);

            if (first)
            {
                first = false;
                Thread t = new Thread(() => rsg.Generator(this));
                t.Start();
            }
        }