I know this might be trivial to some but when programming say in c# and you have a very large data structure. I usually do assignment via equation for setting value in control and then later do it the reverse way.
Control1.Text = data.value1;
Control2.SelectedValue = data.value2;
Reverse:
data.value1 = Control1.Text;
data.value2 = Control2.SelectedValue;
I was wondering if there is a tool to do this quickly. This is to assume that you have a very large set of values.