I am using C # .NET 2010
I am working on a POS project for 20 outlets, and it is already installed and used at each point. One fine day, in the form of a change in the "Payment Method" type, I need to change the user interface form, as well as change the logical codes. Then I will recompile the project and send the update to all outlets, and this is not easy to do. Then I have an idea, I need to separate each form in the project as modules (I will use DLL files if this is normal), so when I change the form, I do not need to recompile everything. I simply modify and compile the necessary form and update it to outlets.
So, can I compile the form in a DLL? if so, how to achieve this? Or maybe I'm not in the right direction to get my idea?
Thanks in advance.
source
share