I’m curious if it’s possible to undo changes I’ve made to ConfigurationSection in run-time. I don’t want to create lots of variables & set current values, so that when I want to undo them, I can just set them back. I need a simpler way, a method I suppose? Can anyone help me?
I’m curious if it’s possible to undo changes I’ve made to ConfigurationSection in run-time.
Share
Have you considered using serialization? You could serialize ConfiguartionSection and then deserialize it to undo. Here are some tips.