Let say i have publish an Windows form application which has 2 labels and 2 text field(Name, Email) ,a SAVE button and a button name UPDATE (file selector).Again let say i have two method in my program.
public void Func1(){
....
}
public void Func2(){
....
}
I have published my form application by Windows installer
Now let say i need to update/ add some features in my application(i want to add another field name Phone Number with it corresponding level, text-field, database update etc.. ) and i want to update my Func2
, add another function (lets say public void Func3()
) . I want my update button to fetch this update from a file.My question is how can i make this update file and make this whole process work.A simple example with short project will be fine for me.