Hmm, maybe I should describe the circumstance, because this is not what I'm looking for.
In my program I have a class "Variable". With the objects of this class I do several calculations. One Variable can also be an computed value, (VariableComplete.Value = Variable1.Value + Variable2.Value). If now Variable1.Value changes, all Variables using this one have to be refreshed (e.g. VariableComplete), because the value of each variable will be computed only one time, saved in a property, and than used on and on...
I've no Idea how I could handle this. To update all objects of Variable1 will not help...
|