public override void setValue(double i) { Value = i; Notify(this); if (first) { first = false; rsg.Generator(this); } }
public override void setValue(double i) { Value = i; Notify(this); if (first) { first = false; Thread t = new Thread(() => rsg.Generator(this)); t.Start(); } }