I know that you can store localized versions of resources that will be retrieved by the application.
I would like to use a similar principle and store different versions of data in a resource file / assembly, and then use this version as a key to extract this data. Is it possible? Is this a common technique?
The data I will store is the UI Control identity.
So, for example, I would have several resources for each version:
Version 1.0 btnID = "thisButton1" Version 2.0 btnID = "thisButton2"
The application will automatically determine which resource will be selected based on the version used.
source share